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