mirror of
https://github.com/photoprism/photoprism.git
synced 2025-12-12 00:34:13 +01:00
8 lines
201 B
Go
8 lines
201 B
Go
package txt
|
|
|
|
// LookupTable represents a string lookup table.
|
|
type LookupTable map[string]string
|
|
|
|
// LookupTableMap represents a map of string lookup tables.
|
|
type LookupTableMap map[string]LookupTable
|