Introduces the Go photo-api service, nginx/systemd deploy wiring, and Next.js gallery/lightbox pages so event photos can be managed and browsed. Co-authored-by: Cursor <cursoragent@cursor.com>
9 lines
196 B
Go
9 lines
196 B
Go
// Package migrations embeds the dual-dialect SQL migrations owned by
|
|
// photo-api. Drizzle (backend) never sees these tables.
|
|
package migrations
|
|
|
|
import "embed"
|
|
|
|
//go:embed *.sql
|
|
var FS embed.FS
|