mirror of
https://github.com/steveiliop56/tinyauth.git
synced 2026-05-23 12:40:16 +00:00
16 lines
199 B
Go
16 lines
199 B
Go
package assets
|
|
|
|
import (
|
|
"embed"
|
|
)
|
|
|
|
// Frontend
|
|
//
|
|
//go:embed dist
|
|
var FrontendAssets embed.FS
|
|
|
|
// Migrations
|
|
//
|
|
//go:embed migrations/sqlite/*.sql migrations/postgres/*.sql
|
|
var Migrations embed.FS
|