WASAPhoto/service/database/db-results.go

12 lines
179 B
Go
Raw Normal View History

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
)