package domain // Sub-routes const VERSION = "/v1" const WEB = VERSION + "/web" const API = VERSION + "/api" // Web prefixed routes const WEB_LOGIN = WEB + "/login" const WEB_INDEX = WEB const WEB_HOME = WEB + "/home" const WEB_FAVORITES = WEB + "/favorites" const WEB_CREATE = WEB + "/create" const WEB_PROFIlE = WEB + "/profile" const WEB_LIST = WEB + "/list" // API prefixed routes const API_AUTH_LOGIN = API + "/auth/login" const API_AUTH_CALLBACK = API + "/auth/callback" const API_AUTH_LOGOUT = API + "/auth/logout"