Leonid Nikitin b24155caf6
Refactor application structure and initialize core components
I decided to rewrite the program taking into account the experience gained.
2025-06-06 14:50:16 +05:00

13 lines
148 B
Go

package resources
import (
"embed"
)
//go:embed translations
var translations embed.FS
func GetTranslations() embed.FS {
return translations
}