mirror of
https://github.com/Yuyi-Oak/BlueArchiveToolkit.git
synced 2026-09-19 11:06:39 +08:00
11 lines
276 B
Go
11 lines
276 B
Go
// Package configtemplate provides the shared runtime configuration template.
|
|
package configtemplate
|
|
|
|
import _ "embed"
|
|
|
|
// Template is the canonical config.toml.example content consumed by both
|
|
// Rust bat and Go bat-api.
|
|
//
|
|
//go:embed config.toml.example
|
|
var Template string
|