revali 2.0.0-dev copy "revali: ^2.0.0-dev" to clipboard
revali: ^2.0.0-dev copied to clipboard

Revali is a build system for creating scalable and efficient APIs with Dart

example/example.dart

import 'package:revali_router/revali_router.dart';

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

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