platform/lib/src.old/client.dart
2017-01-23 22:28:34 -05:00

9 lines
414 B
Dart

import 'dart:async';
import 'authorization_request.dart';
/// An application making protected resource requests on behalf of the
/// resource owner and with its authorization. The term "client" does
/// not imply any particular implementation characteristics (e.g.,
/// whether the application executes on a server, a desktop, or other
/// devices).
abstract class Client extends Stream<AuthorizationRequest> {}