UNPKG

realm-router

Version:

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

18 lines (14 loc) 251 B
"use realm backend"; const routeMap = []; class Collection { static register(path, target) { routeMap.push({ path: path, target: target }); } static getMap() { return routeMap; } } export Collection;