Skip to content
This repository was archived by the owner on Aug 15, 2025. It is now read-only.

Commit 14daabc

Browse files
committed
create and include rawr.tsp
1 parent 8e630fa commit 14daabc

File tree

3 files changed

+22
-0
lines changed

3 files changed

+22
-0
lines changed

api/src/core/main.tsp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ using Routes;
88
using FederatedIdentity;
99
using Services;
1010
using Migration;
11+
using ResourceAdressingWithRelativeRoots;
1112

1213
namespace polyproto.core;
1314

api/src/core/routes/main.tsp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ import "../main.tsp";
66
import "./federated_identity.tsp";
77
import "./migration.tsp";
88
import "./services.tsp";
9+
import "./rawr.tsp";
910

1011
using TypeSpec.Http;
1112
using TypeSpec.Versioning;

api/src/core/routes/rawr.tsp

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
import "@typespec/http";
2+
import "@typespec/versioning";
3+
import "@typespec/openapi";
4+
import "@typespec/openapi3";
5+
import "../main.tsp";
6+
import "./main.tsp";
7+
8+
using TypeSpec.Http;
9+
using TypeSpec.Versioning;
10+
using TypeSpec.OpenAPI;
11+
using polyproto;
12+
using Routes;
13+
14+
namespace Routes;
15+
16+
namespace ResourceAdressingWithRelativeRoots {
17+
18+
}
19+
20+
// rawr x3

0 commit comments

Comments
 (0)