mirror of
https://github.com/Permissionless-Software-Foundation/ipfs-bch-wallet-service.git
synced 2026-09-21 16:52:03 -07:00
14 lines
175 B
JavaScript
14 lines
175 B
JavaScript
import * as auth from './controller'
|
|
|
|
export const baseUrl = '/auth'
|
|
|
|
export default [
|
|
{
|
|
method: 'POST',
|
|
route: '/',
|
|
handlers: [
|
|
auth.authUser
|
|
]
|
|
}
|
|
]
|