15 lines
324 B
Go
15 lines
324 B
Go
package route
|
|
|
|
const (
|
|
HistoryInit = "/history/init"
|
|
HistoryPush = "/history/push"
|
|
HistoryPull = "/history/pull"
|
|
|
|
ProfilesInit = "/profiles/init"
|
|
ProfilesPush = "/profiles/push"
|
|
ProfilesPull = "/profiles/pull"
|
|
|
|
PlaylistsInit = "/playlists/init"
|
|
PlaylistsPush = "/playlists/push"
|
|
PlaylistsPull = "/playlists/pull"
|
|
)
|