revali 1.2.0 copy "revali: ^1.2.0" to clipboard
revali: ^1.2.0 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!';
  }
}