feat: add machine data
This commit is contained in:
parent
b38eb0885f
commit
abaf71636e
10 changed files with 246 additions and 32 deletions
13
app/types/Route.ts
Normal file
13
app/types/Route.ts
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
import type { Machine } from './Machine'
|
||||
|
||||
export type Route = {
|
||||
id: string;
|
||||
node: Machine;
|
||||
prefix: string;
|
||||
advertised: boolean;
|
||||
enabled: boolean;
|
||||
isPrimary: boolean;
|
||||
createdAt: Date;
|
||||
updatedAt: Date;
|
||||
deletedAt: Date;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue