From 362f91160b243453578633e3f9af67ce40179d8c Mon Sep 17 00:00:00 2001 From: Ruben Beltran del Rio Date: Tue, 7 May 2024 22:37:27 +0200 Subject: Make 3D --- lib/nodes/configurable.js | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 lib/nodes/configurable.js (limited to 'lib/nodes/configurable.js') diff --git a/lib/nodes/configurable.js b/lib/nodes/configurable.js new file mode 100644 index 0000000..650f131 --- /dev/null +++ b/lib/nodes/configurable.js @@ -0,0 +1,7 @@ +import Configuration from '../components/configuration'; +import { Node } from '@serpentity/serpentity'; + +export default class Configurable extends Node {}; +Configurable.types = { + configuration: Configuration, +} -- cgit