mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-12-11 11:06:29 +00:00
ca8e215cfa
close #234 * Migrate store * Migrate tests * Rewrite migrations * Init fresh DB in on step * Rm old stuff (meddler, sql files, dead code, ...)
15 lines
194 B
Go
15 lines
194 B
Go
package decoder
|
|
|
|
import "context"
|
|
|
|
type OptionFlags uint8
|
|
|
|
const (
|
|
FirstWinOption OptionFlags = 1 << iota
|
|
ContextOption
|
|
)
|
|
|
|
type Option struct {
|
|
Flags OptionFlags
|
|
Context context.Context
|
|
}
|