summaryrefslogtreecommitdiff
path: root/src/services/api/graphql/recipes/config_file.py
diff options
context:
space:
mode:
authorJohn Estabrook <jestabro@vyos.io>2021-11-22 15:29:46 -0600
committerJohn Estabrook <jestabro@vyos.io>2021-11-23 10:46:55 -0600
commitef7f5ca2fd2c0113875dbd9143342e925cf00621 (patch)
tree5a5ddc62f15f429062e42625a1517aad52d55a0a /src/services/api/graphql/recipes/config_file.py
parentfb2dc58d91bd93ba3aaa63d46e49e6609c18d46f (diff)
downloadvyos-1x-ef7f5ca2fd2c0113875dbd9143342e925cf00621.tar.gz
vyos-1x-ef7f5ca2fd2c0113875dbd9143342e925cf00621.zip
graphql: T3993: refactor directive and mutation definitions
Diffstat (limited to 'src/services/api/graphql/recipes/config_file.py')
-rw-r--r--src/services/api/graphql/recipes/config_file.py16
1 files changed, 0 insertions, 16 deletions
diff --git a/src/services/api/graphql/recipes/config_file.py b/src/services/api/graphql/recipes/config_file.py
deleted file mode 100644
index 850e5326e..000000000
--- a/src/services/api/graphql/recipes/config_file.py
+++ /dev/null
@@ -1,16 +0,0 @@
-
-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()