mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-15 15:19:36 +01:00
7224cfc578
* Upgrade xorm to v1.2.2 * Change the Engine interface to match xorm v1.2.2
15 lines
194 B
Go
Vendored
15 lines
194 B
Go
Vendored
package decoder
|
|
|
|
import "context"
|
|
|
|
type OptionFlags uint8
|
|
|
|
const (
|
|
FirstWinOption OptionFlags = 1 << iota
|
|
ContextOption
|
|
)
|
|
|
|
type Option struct {
|
|
Flags OptionFlags
|
|
Context context.Context
|
|
}
|