undergroundwires/privacy.sexy

View on GitHub
src/infrastructure/EnvironmentVariables/IAppMetadata.ts

Summary

Maintainability
A
0 mins
Test Coverage
/**
 * Represents essential metadata about the application.
 */
export interface IAppMetadata {
  readonly version: string;
  readonly name: string;
  readonly slogan: string;
  readonly repositoryUrl: string;
  readonly homepageUrl: string;
}