14 lines
161 B
Go
14 lines
161 B
Go
|
|
//go:build !prod
|
||
|
|
// +build !prod
|
||
|
|
|
||
|
|
package main
|
||
|
|
|
||
|
|
import (
|
||
|
|
"io/fs"
|
||
|
|
"simpleauth/internal/embedded"
|
||
|
|
)
|
||
|
|
|
||
|
|
func GetStaticAssets() fs.FS {
|
||
|
|
return embedded.NewOsFs()
|
||
|
|
}
|