We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
in api.dart
api.dart
import "users.dart"; part 'api.g.dart'; @Api(path: 'api') class ExampleApi extends Object with _$JaguarMedisApi { @Group(path: 'users') UsersGroup users = new UsersGroup(); }
in users.dart
users.dart
class UsersGroup { @Route('/') String get() => "user"; }
The text was updated successfully, but these errors were encountered:
Fixed by cd7636e
Sorry, something went wrong.
Merge pull request #18 from Jaguar-dart/master
540c03d
Merge
No branches or pull requests
in
api.dart
in
users.dart
The text was updated successfully, but these errors were encountered: