mirror of
https://github.com/ente-io/ente.git
synced 2025-05-28 05:28:05 +00:00
22 lines
437 B
Go
22 lines
437 B
Go
package model
|
|
|
|
type PhotosStore string
|
|
|
|
const (
|
|
KVConfig PhotosStore = "kvConfig"
|
|
RemoteAlbums PhotosStore = "remoteAlbums"
|
|
RemoteFiles PhotosStore = "remoteFiles"
|
|
RemoteAlbumEntries PhotosStore = "remoteAlbumEntries"
|
|
)
|
|
|
|
const (
|
|
CollectionsSyncKey = "lastCollectionSync"
|
|
CollectionsFileSyncKeyFmt = "collectionFilesSync-%d"
|
|
)
|
|
|
|
type ContextKey string
|
|
|
|
const (
|
|
FilterKey ContextKey = "export_filter"
|
|
)
|