mirror of
https://github.com/notherealmarco/WASAPhoto.git
synced 2025-03-14 06:06:15 +01:00
11 lines
179 B
Go
11 lines
179 B
Go
package database
|
|
|
|
type QueryResult int
|
|
|
|
// Constants used to represent the result of queries
|
|
const (
|
|
SUCCESS = 0
|
|
ERR_NOT_FOUND = 1
|
|
ERR_EXISTS = 2
|
|
ERR_INTERNAL = 3
|
|
)
|