mirror of
https://github.com/esiur/esiur-dart.git
synced 2026-04-04 10:18:20 +00:00
13 lines
273 B
Dart
13 lines
273 B
Dart
|
|
|
|
import '../../Resource/IResource.dart';
|
|
import './DistributedConnection.dart';
|
|
import '../../Core/AsyncReply.dart';
|
|
|
|
abstract class EntryPoint extends IResource
|
|
{
|
|
|
|
AsyncReply<List<IResource>> query(String path, DistributedConnection sender);
|
|
bool create();
|
|
}
|