Added openapi generator

This commit is contained in:
2026-03-12 17:44:24 +01:00
parent 2c0381964c
commit 3ea7d5e68a
62 changed files with 5915 additions and 51 deletions
+9
View File
@@ -0,0 +1,9 @@
import { InjectionToken } from '@angular/core';
export const BASE_PATH = new InjectionToken<string>('basePath');
export const COLLECTION_FORMATS = {
'csv': ',',
'tsv': ' ',
'ssv': ' ',
'pipes': '|'
}