HttpServer working with GET routes

This commit is contained in:
2025-09-28 09:20:37 -04:00
parent 9372777296
commit 8585549ae1
22 changed files with 1980 additions and 50 deletions

View File

@@ -163,4 +163,8 @@ export default class Assert {
private static _isNumberInRange(value: unknown, lowerBound: number, upperBound: number): value is number {
return Assert._isNumber(value) && value >= lowerBound && value <= upperBound;
}
private constructor() {
throw new Error('Assert is a static class that may not be instantiated');
}
}