Files
herolib/examples/hero/generation/openapi_generation/example_actor/handle.v
2024-12-30 17:36:22 +02:00

6 lines
110 B
V

module example_actor
pub fn (mut a ExampleActor) handle(method string, data string) !string {
return data
}