diff options
Diffstat (limited to 'scripts/ingen.py')
-rw-r--r-- | scripts/ingen.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/scripts/ingen.py b/scripts/ingen.py index 7f82b799..158a1b81 100644 --- a/scripts/ingen.py +++ b/scripts/ingen.py @@ -25,11 +25,13 @@ except ImportError: from io import StringIO as StringIO class NS: + atom = rdflib.Namespace('http://lv2plug.in/ns/ext/atom#') ingen = rdflib.Namespace('http://drobilla.net/ns/ingen#') ingerr = rdflib.Namespace('http://drobilla.net/ns/ingen/errors#') lv2 = rdflib.Namespace('http://lv2plug.in/ns/lv2core#') patch = rdflib.Namespace('http://lv2plug.in/ns/ext/patch#') rdf = rdflib.Namespace('http://www.w3.org/1999/02/22-rdf-syntax-ns#') + rsz = rdflib.Namespace('http://lv2plug.in/ns/ext/resize-port#') xsd = rdflib.Namespace('http://www.w3.org/2001/XMLSchema#') class Interface: @@ -37,6 +39,9 @@ class Interface: def put(self, path, body): pass + def get(self, path): + pass + def set(self, path, body): pass |