wisski-cloud-distillery/internal/config/runtime.go
2022-09-19 14:56:46 +02:00

10 lines
192 B
Go

package config
import (
"path/filepath"
)
// RuntimeDir returns the path to the runtime directory
func (cfg Config) RuntimeDir() string {
return filepath.Join(cfg.DeployRoot, "runtime")
}