12 lines
261 B
Go
12 lines
261 B
Go
|
package common
|
||
|
|
||
|
// Exported constants for folder management
|
||
|
const (
|
||
|
APPSFOLDER = "apps" + SEP
|
||
|
UNIKRAFTFOLDER = "unikraft" + SEP
|
||
|
BUILDFOLDER = "build" + SEP
|
||
|
LIBSFOLDER = "libs" + SEP
|
||
|
INCLUDEFOLDER = "include" + SEP
|
||
|
|
||
|
KVM_IMAGE = "_kvm-x86_64"
|
||
|
)
|