mirror of
https://codeberg.org/aryak/mozhi
synced 2024-11-08 17:32:23 +05:30
11 lines
108 B
Go
11 lines
108 B
Go
package public
|
|
|
|
import "embed"
|
|
|
|
//go:embed *
|
|
var files embed.FS
|
|
|
|
func GetFiles() embed.FS {
|
|
return files
|
|
}
|