Merge pull request #86 from SyncrowIOT/swagger-doc

chore: setup initial Swagger documentation
This commit is contained in:
hannathkadher
2024-09-16 12:08:28 +04:00
committed by GitHub
2 changed files with 18 additions and 2 deletions

View File

@ -0,0 +1,11 @@
export class ControllerRoute {
static REGION = class {
public static readonly ROUTE = 'region';
static ACTIONS = class {
public static readonly GET_REGIONS_SUMMARY = 'Get list of all regions';
public static readonly GET_REGIONS_DESCRIPTION =
'Retrieve the list of all regions registered in Syncrow.';
};
};
}