Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion examples/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,6 @@ publisher makes before sending a message.

```ts
imports: [ApplicationModule, PersistenceModule],
provides: [],
exports: [PlaceOrder, FindOrder, Logger],
```

Expand Down
1 change: 0 additions & 1 deletion examples/order-amqp/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ src/test-fixtures.ts serve / tapped / unmodelled / gate, as Vitest fixtures, a
```ts
export const OrderAmqpModule = Module("OrderAmqp")({
imports: [ApplicationModule, PersistenceModule],
provides: [],
exports: [PlaceOrder, FindOrder, Logger],
});
```
Expand Down
1 change: 0 additions & 1 deletion examples/order-amqp/src/module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,5 @@ import { PersistenceModule } from "@btravstack/start-example-order-infrastructur
*/
export const OrderAmqpModule = Module("OrderAmqp")({
imports: [ApplicationModule, PersistenceModule],
provides: [],
exports: [PlaceOrder, FindOrder, Logger],
});
1 change: 0 additions & 1 deletion examples/order-amqp/src/needs-gate.test-d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,6 @@ const _wired = start(OrderAmqpModule, options);
// is handed.
const PartialAmqp = Module("PartialAmqp")({
imports: [ApplicationModule, PersistenceModule],
provides: [],
exports: [PlaceOrder, FindOrder],
});

Expand Down
1 change: 0 additions & 1 deletion examples/order-amqp/src/test-fixtures.ts
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,6 @@ const persistenceOf = (repository: ServiceOf<OrderRepository>) =>
const amqpWith = (repository: ServiceOf<OrderRepository>) =>
Module("StubAmqp")({
imports: [ApplicationModule, persistenceOf(repository)],
provides: [],
exports: [PlaceOrder, FindOrder, Logger],
});

Expand Down
1 change: 0 additions & 1 deletion examples/order-api/src/module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,5 @@ import { PersistenceModule } from "@btravstack/start-example-order-infrastructur
*/
export const OrderApiModule = Module("OrderApi")({
imports: [ApplicationModule, PersistenceModule],
provides: [],
exports: [PlaceOrder, FindOrder, Logger],
});
Comment thread
btravers marked this conversation as resolved.
1 change: 0 additions & 1 deletion examples/order-api/src/needs-gate.test-d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@ const _wired = start(OrderApiModule, options);
// is handed.
const PartialApi = Module("PartialApi")({
imports: [ApplicationModule, PersistenceModule],
provides: [],
exports: [PlaceOrder, FindOrder],
});

Expand Down
1 change: 0 additions & 1 deletion examples/order-api/src/test-fixtures.ts
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,6 @@ const persistenceOf = (repository: ServiceOf<OrderRepository>) =>
const apiWith = (repository: ServiceOf<OrderRepository>) =>
Module("StubApi")({
imports: [ApplicationModule, persistenceOf(repository)],
provides: [],
exports: [PlaceOrder, FindOrder, Logger],
});

Expand Down
1 change: 0 additions & 1 deletion examples/order-temporal/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ different name:
```ts
export const OrderTemporalModule = Module("OrderTemporal")({
imports: [ApplicationModule, PersistenceModule],
provides: [],
exports: [PlaceOrder, FindOrder, Logger],
});
```
Expand Down
1 change: 0 additions & 1 deletion examples/order-temporal/src/module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,5 @@ import { PersistenceModule } from "@btravstack/start-example-order-infrastructur
*/
export const OrderTemporalModule = Module("OrderTemporal")({
imports: [ApplicationModule, PersistenceModule],
provides: [],
exports: [PlaceOrder, FindOrder, Logger],
});
1 change: 0 additions & 1 deletion examples/order-temporal/src/needs-gate.test-d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,6 @@ const _wired = start(OrderTemporalModule, options);
// is handed.
const PartialTemporal = Module("PartialTemporal")({
imports: [ApplicationModule, PersistenceModule],
provides: [],
exports: [PlaceOrder, FindOrder],
});

Expand Down
1 change: 0 additions & 1 deletion examples/order-temporal/src/test-fixtures.ts
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,6 @@ const persistenceOf = (repository: ServiceOf<OrderRepository>) =>
const temporalWith = (repository: ServiceOf<OrderRepository>) =>
Module("StubTemporal")({
imports: [ApplicationModule, persistenceOf(repository)],
provides: [],
exports: [PlaceOrder, FindOrder, Logger],
});

Expand Down
1 change: 0 additions & 1 deletion examples/order-worker/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ src/test-fixtures.ts serve / queue / gate / tapped, as Vitest fixtures
```ts
export const OrderWorkerModule = Module("OrderWorker")({
imports: [ApplicationModule, PersistenceModule],
provides: [],
exports: [PlaceOrder, FindOrder, Logger],
});
```
Expand Down
1 change: 0 additions & 1 deletion examples/order-worker/src/module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,5 @@ import { PersistenceModule } from "@btravstack/start-example-order-infrastructur
*/
export const OrderWorkerModule = Module("OrderWorker")({
imports: [ApplicationModule, PersistenceModule],
provides: [],
exports: [PlaceOrder, FindOrder, Logger],
});
1 change: 0 additions & 1 deletion examples/order-worker/src/needs-gate.test-d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@ const _wired = start(OrderWorkerModule, options);
// is handed.
const PartialWorker = Module("PartialWorker")({
imports: [ApplicationModule, PersistenceModule],
provides: [],
exports: [PlaceOrder, FindOrder],
});

Expand Down
1 change: 0 additions & 1 deletion examples/order-worker/src/test-fixtures.ts
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,6 @@ const persistenceOf = (repository: ServiceOf<OrderRepository>) =>
const workerWith = (repository: ServiceOf<OrderRepository>) =>
Module("StubWorker")({
imports: [ApplicationModule, persistenceOf(repository)],
provides: [],
exports: [PlaceOrder, FindOrder, Logger],
});

Expand Down
Loading