feat: runtime manager

This commit is contained in:
Ilia Denisov
2026-04-28 20:39:18 +02:00
committed by GitHub
parent e0a99b346b
commit a7cee15115
289 changed files with 45660 additions and 2207 deletions
+8 -1
View File
@@ -3,8 +3,15 @@
# The `jet` target regenerates the go-jet/v2 query-builder code under
# internal/adapters/postgres/jet/ against a transient PostgreSQL container
# brought up by cmd/jetgen. Generated code is committed.
#
# The `mocks` target regenerates the gomock-driven mocks via the
# //go:generate directives that live next to the interfaces they cover
# under internal/ports/. Generated code is committed.
.PHONY: jet
.PHONY: jet mocks
jet:
go run ./cmd/jetgen
mocks:
go generate ./internal/ports/...