This repository has been archived on 2023-11-13. You can view files and clone it, but cannot push or open issues or pull requests.
imagini/web_native/lib/api/auth_client/base_auth_client.dart

7 lines
148 B
Dart
Raw Normal View History

2021-04-06 00:40:23 +00:00
import 'package:http/http.dart';
abstract class BaseAuthClient implements BaseClient {
String getServer();
Map<String, String> getHeaders();
}