export enum CategoryEnum {
  CLOUD = 'cloud',
  SELF = 'self',
}

export type Category = CategoryEnum.CLOUD | CategoryEnum.SELF
