summaryrefslogtreecommitdiff
path: root/src/services/api/graphql/recipes/config_file.py
blob: 850e5326e365852f099d694a56555feec26fe2f5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16

from . recipe import Recipe

class ConfigFile(Recipe):
    def __init__(self, session, command_file):
        super().__init__(session, command_file)

    # Define any custom processing of parameters here by overriding
    # save/load:
    #
    # def save(self):
    #     self.data = transform_data(self.data)
    #     super().save()
    # def load(self):
    #     self.data = transform_data(self.data)
    #     super().load()