Files
kairos-sdk/constants/constants.go
Itxaka 26187e369e Adds raw disk utils
Adds raw disk utils to convert a raw disk into a GCE or Azure image
Adds a new constants package to store constants that can be reused
across all of our projects
Expands KairosFs interface to be in line with whats used on other
projects so we can use it
2024-12-18 12:17:10 +01:00

9 lines
195 B
Go

// Package constants This file contains all the constants that can be reused across the project
package constants
const (
MB = int64(1024 * 1024)
GB = 1024 * MB
FilePerm = 0644
)