Sign in
apache
/
buildstream
/
refs/heads/tpollard/python38
/
.
/
tests
/
internals
/
pluginloading
/
customelement
/
pluginelements
/
foo.py
blob: c6a85a5b18529d9413f90dc8b5d3deec3cca6a65 [
file
]
from
buildstream
import
Element
class
FooElement
(
Element
):
def
preflight
(
self
):
pass
def
configure
(
self
,
node
):
pass
def
get_unique_key
(
self
):
return
{}
def
setup
():
return
FooElement