nginx-ui/app/src/api/environment.ts
2023-11-29 13:56:40 +08:00

12 lines
264 B
TypeScript

import type { ModelBase } from '@/api/curd'
import Curd from '@/api/curd'
export interface Environment extends ModelBase {
name: string
url: string
token: string
}
const environment: Curd<Environment> = new Curd('/environment')
export default environment