revali 1.1.0 copy "revali: ^1.1.0" to clipboard
revali: ^1.1.0 copied to clipboard

A build system for creating APIs using Dart

example/example.dart

import 'package:revali_router/revali_router.dart';

@Controller('hello')
class HelloController {
  const HelloController();

  @Get()
  String hello() {
    return 'Hello, World!';
  }
}