Created
December 15, 2021 10:35
-
-
Save tjmonsi/b09a20fbe6c4fdc3d184391020d595cd to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { post } from './login/index.js'; | |
import { get } from './logout/index.js'; | |
import { get as getCheckAuth } from './check-auth/index.js' | |
export const authLogin = { | |
post | |
}; | |
export const authLogout = { | |
get | |
}; | |
export const checkAuth = { | |
get: getCheckAuth | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment