mirror of
https://github.com/0xJacky/nginx-ui.git
synced 2025-05-11 02:15:48 +02:00
12 lines
264 B
TypeScript
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
|