Created
June 5, 2022 19:35
-
-
Save JEuler/3e622644d05739400396c44d314053f2 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
void main() { | |
final configuredApp = AppConfig( | |
appName: 'App', | |
flavorName: 'uat', | |
apiBaseUrl: uatServerUrl, | |
coreAppBaseUrl: uatServerCoreUrl, | |
child: App( | |
WebService.create(uatServerUrl), | |
StorageServiceImpl(), | |
CoreAppWebService.create(uatServerCoreUrl), | |
), | |
); | |
run(configuredApp); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment