mirror of
https://github.com/photoprism/photoprism.git
synced 2026-01-23 02:24:24 +00:00
8 lines
112 B
Go
8 lines
112 B
Go
package fs
|
|
|
|
// Size constants for KByte, MByte, and GByte.
|
|
const (
|
|
KB = 1024
|
|
MB = KB * 1024
|
|
GB = MB * 1024
|
|
)
|