10 lines
192 B
Go
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")
|
|
}
|