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