Sign in
apache
/
buildstream
/
refs/heads/tlater/auto-committers
/
.
/
tests
/
internals
/
pluginloading
/
customsource
/
pluginsources
/
foo.py
blob: 8dd16801c27a45e9be513d1ffbbe8cda61015fe0 [
file
] [
log
] [
blame
]
from
buildstream
import
Source
,
Consistency
class
FooSource
(
Source
):
def
preflight
(
self
):
pass
def
configure
(
self
,
node
):
pass
def
get_unique_key
(
self
):
pass
def
get_consistency
(
self
):
return
Consistency
.
INCONSISTENT
def
setup
():
return
FooSource