Files
herolib/lib/schemas/openrpc/handler_factory.v
Mahmoud-Emad 61487902d6 chore: Remove unused imports
- Remove 'os' import from heromodels
- Remove 'json' and 'x.json2' imports from openrpc
- Remove 'console' import from openrpc
- Remove unused imports in multiple modules
2025-09-28 10:38:45 +03:00

11 lines
201 B
V

module openrpc
// path to openrpc.json file
pub fn new_handler(openrpc_path string) !Handler {
mut openrpc_handler := Handler{
specification: new(path: openrpc_path)!
}
return openrpc_handler
}