© 2026 Hedgehog Software, LLC
MainRESTHandler
export class MainRESTHandler { constructor() { this.auth.register = this.auth.register.bind(this); this.restaurants.location = this.restaurants.location.bind(this); } auth = { register() { // ... } } restaurants = { location() { // ... } } }