summaryrefslogtreecommitdiff
path: root/src/services/api/graphql/recipes/create_interface_ethernet.py
blob: aafb4d55ceefe9bd5639d577356404fa58ee18e7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13

from . recipe import Recipe

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

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