wisski-cloud-distillery/internal/wisski/runtime.go
2022-09-14 14:17:08 +02:00

8 lines
199 B
Go

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