From 61dd2bbb2c6012f78f2ee9073aebf2652c361b2d Mon Sep 17 00:00:00 2001 From: Efril Date: Tue, 12 May 2026 00:55:15 +0700 Subject: [PATCH] update api --- lib/env.dart | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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'; }