diff --git a/lib/env.dart b/lib/env.dart index 5a347a5..ddc3051 100644 --- a/lib/env.dart +++ b/lib/env.dart @@ -9,12 +9,12 @@ abstract class Env { @dev class DevEnv implements Env { @override - String get baseUrl => 'https://enaklo-pos-be.altru.id'; // example value + String get baseUrl => 'https://api-pos.apskel.id'; // example value } @Injectable(as: Env) @prod class ProdEnv implements Env { @override - String get baseUrl => 'https://enaklo-pos-be.altru.id'; + String get baseUrl => 'https://api-pos.apskel.id'; }