Files
yellowjacket/backend/database/database.go
T
2025-04-10 18:11:08 -05:00

8 lines
85 B
Go

package database
type DB struct{}
func NewDB() (*DB, error) {
return &DB{}, nil
}