loveuer 0cfd617922 init: 0.0.6
next: upload
2025-04-28 14:59:22 +08:00

16 lines
231 B
Go

package opt
import "path/filepath"
const (
Meta = ".meta."
)
func FilePath(code string) string {
return filepath.Join(Cfg.DataPath, code)
}
func MetaPath(code string) string {
return filepath.Join(Cfg.DataPath, Meta+code)
}