From c64a4bc56f93c08cf55fb907078e588ad737684c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hugo=20H=C3=B6rnquist?= Date: Tue, 5 Sep 2023 00:55:35 +0200 Subject: Major work on, something. --- module/vcomponent/data-stores/virtual.scm | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 module/vcomponent/data-stores/virtual.scm (limited to 'module/vcomponent/data-stores/virtual.scm') diff --git a/module/vcomponent/data-stores/virtual.scm b/module/vcomponent/data-stores/virtual.scm new file mode 100644 index 00000000..03c115f5 --- /dev/null +++ b/module/vcomponent/data-stores/virtual.scm @@ -0,0 +1,22 @@ +(define-module (vcomponent data-stores virtual) + :use-module (oop goops) + :use-module ((srfi srfi-88) :select ()) + :use-module (vcomponent data-stores common) + :export (make-file-store)) + +(define-class () + ) + +(define-method (get-all (this )) + #f) + +(define-method (get-by-uid (this ) + (uid )) + #f) + + +(define-method (color (this )) + "") + +(define-method (displayname (this )) + "Virtual Calendar") -- cgit v1.2.3