first commit
This commit is contained in:
commit
faf67cc6d8
148 changed files with 6580 additions and 0 deletions
8
lib/data/services/api_client.dart
Normal file
8
lib/data/services/api_client.dart
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
import 'package:seshat/domain/models/owner.dart';
|
||||
import 'package:seshat/utils/result.dart';
|
||||
|
||||
class ApiClient {
|
||||
Future<Result<List<Owner>>> getOwners() async {
|
||||
return Result.ok(<Owner>[]);
|
||||
}
|
||||
}
|
||||
Reference in a new issue