gaulthiergain-tools/srcs/common/unikraft_path.go

14 lines
303 B
Go
Raw Permalink Normal View History

2020-09-16 09:14:26 +02:00
package common
// Exported constants for folder management
const (
2022-09-09 11:43:03 +02:00
APPSFOLDER = "apps" + SEP
WORKSPACEFOLDER = "workspace" + SEP
UNIKRAFTFOLDER = "unikraft" + SEP
2020-09-16 09:14:26 +02:00
BUILDFOLDER = "build" + SEP
2022-09-09 11:43:03 +02:00
LIBSFOLDER = "libs" + SEP
INCLUDEFOLDER = "include" + SEP
2020-09-16 09:14:26 +02:00
KVM_IMAGE = "_kvm-x86_64"
2022-09-09 11:43:03 +02:00
)