mirror of
https://github.com/steveiliop56/tinyauth.git
synced 2025-10-28 12:45:47 +00:00
16 lines
147 B
Go
16 lines
147 B
Go
package assets
|
|
|
|
import (
|
|
"embed"
|
|
)
|
|
|
|
// UI assets
|
|
//
|
|
//go:embed dist
|
|
var Assets embed.FS
|
|
|
|
// Version file
|
|
//
|
|
//go:embed version
|
|
var Version string
|