mirror of
https://github.com/photoprism/photoprism.git
synced 2025-12-12 00:34:13 +01:00
9 lines
112 B
Go
9 lines
112 B
Go
package fs
|
|
|
|
// Size constants for KByte, MByte, and GByte.
|
|
const (
|
|
KB = 1024
|
|
MB = KB * 1024
|
|
GB = MB * 1024
|
|
)
|