summaryrefslogtreecommitdiff
path: root/tests/internals/pluginloading/customsource/pluginsources/foo.py
blob: fce5239b170dc977dfec8e8e40bc4771e2c55c0f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
from buildstream import Source


class FooSource(Source):
    def preflight(self):
        pass

    def configure(self, node):
        pass

    def get_unique_key(self):
        pass


def setup():
    return FooSource