You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
OneAuth/oaweb/composables/api/index.ts

17 lines
278 B
TypeScript

2 months ago
import * as user from "./user"
import * as token from "./token"
import * as role from "./role"
import * as app from "./app"
import * as access from "./access"
4 weeks ago
import { token as apitoken } from './webapi'
2 months ago
export default {
4 weeks ago
apitoken,
1 year ago
user,
token,
role,
app,
access
1 month ago
}