refactor(resources): вынести embed-конфиги в корневой resources

Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-openagent)

Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai>
This commit is contained in:
2026-08-09 00:33:32 +03:00
parent 174b5f9048
commit a9f5a74162
4 changed files with 17 additions and 9 deletions
+13
View File
@@ -0,0 +1,13 @@
package resources
import _ "embed"
// ConfigEnYAML is the embedded English example configuration file.
//
//go:embed config.en.yaml
var ConfigEnYAML []byte
// ConfigRuYAML is the embedded Russian example configuration file.
//
//go:embed config.ru.yaml
var ConfigRuYAML []byte