Sign in
apache
/
buildstream
/
refs/heads/tpollard/python38
/
.
/
tests
/
internals
/
pluginloading
/
customsource
/
pluginsources
/
foo.py
blob: 706c96f3b840469b26a469d74052e4fa071a627c [
file
]
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