EndpointPrivate for api

This commit is contained in:
Rory&
2025-12-16 02:58:40 +01:00
parent 9c1e826d00
commit c218efb4d7

View File

@@ -16,8 +16,9 @@
along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
export class ApiConfiguration {
import { EndpointConfiguration } from "./EndpointConfiguration";
export class ApiConfiguration extends EndpointConfiguration {
defaultVersion: string = "9";
activeVersions: string[] = ["6", "7", "8", "9"];
endpointPublic: string | null = null;
}