mirror of
https://github.com/kairos-io/kairos-sdk.git
synced 2025-09-20 10:29:50 +00:00
9 lines
195 B
Go
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
|
||
|
)
|