Sign in
apache
/
buildstream
/
refs/heads/tristan/bst2-separation
/
.
/
tests
/
internals
/
pluginloading
/
customsource
/
pluginsources
/
foo.py
blob: 42476646342d58a28a404982f94653f7b0373e82 [
file
] [
log
] [
blame
]
from
buildstream2
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