1
0
mirror of https://github.com/go-vikunja/app synced 2024-05-29 00:36:49 +00:00
app-mirror-github/lib/api/server_implementation.dart
Denys Vitali 056b2d72c9
chore: format code with dart format (#71)
This PR formats all code with dart format and adds a step to the CI so that it will be checked on every push and PR.
2024-04-05 22:36:56 +02:00

18 lines
482 B
Dart

import 'package:vikunja_app/api/client.dart';
import 'package:vikunja_app/api/service.dart';
import 'package:vikunja_app/models/server.dart';
import '../service/services.dart';
class ServerAPIService extends APIService implements ServerService {
ServerAPIService(Client client) : super(client);
@override
Future<Server?> getInfo() {
return client.get('/info').then((value) {
if (value == null) return null;
return Server.fromJson(value.body);
});
}
}