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

33 lines
466 B
TypeScript

/*
* index.ts
* Copyright (C) 2023 veypi <i@veypi.com>
* 2023-09-22 20:17
* Distributed under terms of the MIT license.
*/
import app from "./app";
1 year ago
import role from "./role";
import token from "./token";
import user from "./user";
1 year ago
import resource from "./resource";
import access from './access';
import nats from './nats'
import tsdb from './tsdb'
const api = {
1 year ago
user,
app,
token,
role,
resource,
access,
tsdb,
nats
}
export default api;