mirror of
https://github.com/yunionio/cloudpods.git
synced 2026-06-15 22:44:45 +08:00
9 lines
261 B
Go
9 lines
261 B
Go
package sqlite
|
|
|
|
// ResultCode is an abstraction over what is exposed in crawshaw or zombiezen. For now the type
|
|
// wraps the definitions there, but we add some extra common methods on top here.
|
|
|
|
func (me ResultCode) ToPrimary() ResultCode {
|
|
return me & 0xff
|
|
}
|