RackHD/on-web-ui

View on GitHub
src/app/models/config.ts

Summary

Maintainability
A
0 mins
Test Coverage
/*
 This defines the data model of RackHD configures.
*/
export class Config {
  key: string;
  value: string;
}

export const CONFIG_URL = {
    getAllUrl: '/config',
    patchUrl: '/config',
};