diff options
Diffstat (limited to 'lib/services/authentication_service.dart')
| -rw-r--r-- | lib/services/authentication_service.dart | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/lib/services/authentication_service.dart b/lib/services/authentication_service.dart deleted file mode 100644 index ef9113e..0000000 --- a/lib/services/authentication_service.dart +++ /dev/null @@ -1,16 +0,0 @@ -import 'package:training_planner/services/istoregear_api_service.dart'; - -class AuthenticationService { - bool isAuthenticated = false; - String apiKey = ''; - String storedPNumber = '639174'; - String storedDaycode = '424'; - - Future<bool> authenticate(String username, String password) async { - isAuthenticated = true; - apiKey = 'test'; - storedPNumber = username; - storedDaycode = password; - return true; - } -} |
