Skip to content
Snippets Groups Projects
Select Git revision
  • 48c07269e10c33738175b67beb05885fac7d49a0
  • master default
2 results

alloc.h

Blame
  • Forked from HyukSang Kwon / 1801_OS_assignment4
    Source project has a limited visibility.
    routing.ts 206 B
    export interface Routing {
      id: number;
      name: string;
      domain: string;
      ip: string;
      port: number;
      createdAt: string;
      updatedAt: string;
      certificateId: number | undefined;
      caching: boolean;
    }