docs: add package comments to data layer packages

This commit is contained in:
2026-06-01 12:55:33 +02:00
committed by Milas Holsting
parent 6303d3c83c
commit ab519a5361
4 changed files with 4 additions and 0 deletions

View File

@@ -1,3 +1,4 @@
// Package database manages database schema migrations and fixes.
package database package database
import ( import (

View File

@@ -1,3 +1,4 @@
// Package fixes implements one-off database migration fixes.
package fixes package fixes
import ( import (

View File

@@ -1,3 +1,4 @@
// Package db provides database access via sqlc-generated queries and helper functions.
package db package db
import "database/sql" import "database/sql"

View File

@@ -1,3 +1,4 @@
// Package domain defines the core domain types and interfaces used across the application.
package domain package domain
import ( import (