UNPKG

realm-router

Version:

Realm router is a bleeding edge restful framework (ec7 + decorators), based on realm dependency injection.

21 lines (17 loc) 274 B
"use realm backend"; import route, cors from realm.router.decorators; @cors() @route("/api/devauth/:email") class Hello { static get($params) { return { ok: true }; } static put() { return { ok: 1 } } } export Hello;