Files
metacrypt/internal/db/db.go
Kyle Isom bbe382dc10 Migrate module path from kyle/ to mc/ org
All import paths updated to git.wntrmute.dev/mc/. Bumps mcdsl to v1.2.0.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-27 02:05:59 -07:00

16 lines
366 B
Go

// Package db provides SQLite database access and migrations.
package db
import (
"database/sql"
mcdsldb "git.wntrmute.dev/mc/mcdsl/db"
)
// Open opens or creates a SQLite database at the given path with the
// standard Metacircular pragmas (WAL, FK, busy timeout) and 0600
// permissions.
func Open(path string) (*sql.DB, error) {
return mcdsldb.Open(path)
}