8 lines
199 B
Go
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")
|
|
}
|