You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
425 B
15 lines
425 B
1 year ago
|
// coverage:ignore-file
|
||
|
import 'package:nextcloud/src/api/spreed.openapi.dart';
|
||
|
import 'package:nextcloud/src/client.dart';
|
||
|
|
||
|
export 'src/api/spreed.openapi.dart';
|
||
|
export 'src/helpers/spreed.dart';
|
||
|
|
||
|
// ignore: public_member_api_docs
|
||
|
extension SpreedExtension on NextcloudClient {
|
||
|
static final _spreed = Expando<Client>();
|
||
|
|
||
|
/// Client for the spreed APIs
|
||
|
Client get spreed => _spreed[this] ??= Client.fromClient(this);
|
||
|
}
|