postgres
PostgreSQL as the backing store for repositories.
repository adds a generic repository pattern to your Go service using Go generics, providing a consistent data access abstraction.
Use repository to keep data access logic separate from business logic. The generic implementation reduces boilerplate across entities. Pairs naturally with postgres or mysql as the backing store.
verikt new my-service --language go --cap postgres,repository# or add to an existing service:verikt add repositorypostgres
mysql
ddd