initial project setup

This commit is contained in:
2025-03-11 08:16:29 -04:00
commit 001a4ee4fc
48 changed files with 12260 additions and 0 deletions

10
src/testing/index.ts Normal file
View File

@@ -0,0 +1,10 @@
import {
TypeSpecTestLibrary,
createTestLibrary,
findTestPackageRoot,
} from "@typespec/compiler/testing";
export const HttpServerJavaScriptTestLibrary: TypeSpecTestLibrary = createTestLibrary({
name: "@pojagi/http-server-drf",
packageRoot: await findTestPackageRoot(import.meta.url),
});