// // Server module // // This module contains solutions for basic server endpoints such as: // // - Errors; // saving and retrieving errors that are occuring on the server // // - Server Status; // retrieving the status of the server // // - Server Status Snapshot; // saving and retrieving the status of the server at a specific time // // ERRORS export * from './errors/errors.controller'; export * from './errors/errors.control-service'; export * from './errors/errors.data-service'; // SERVER-STATUS export * from './server-status/server-status-snapshot.data-service'; export * from './server-status/server-status-snapshot.control-service'; export * from './server-status/server-status.control-service'; export * from './server-status/server-status.controller';