summaryrefslogtreecommitdiff
path: root/tests/internals/pluginloading/customelement/pluginelements/foo.py
blob: 823306ebc8ebd05e51922addacf8a9c0cd321e65 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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