Skip to content

Instantly share code, notes, and snippets.

@tjmonsi
Created December 15, 2021 10:35
Show Gist options
  • Save tjmonsi/b09a20fbe6c4fdc3d184391020d595cd to your computer and use it in GitHub Desktop.
Save tjmonsi/b09a20fbe6c4fdc3d184391020d595cd to your computer and use it in GitHub Desktop.
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