From 78e13ed045b90477e5b38d7d558153c02098311d Mon Sep 17 00:00:00 2001 From: Sasha Koshka Date: Fri, 3 May 2024 13:32:41 -0400 Subject: [PATCH] Removed plugin --- x/plugin.go | 17 ----------------- 1 file changed, 17 deletions(-) delete mode 100644 x/plugin.go diff --git a/x/plugin.go b/x/plugin.go deleted file mode 100644 index 1c1f493..0000000 --- a/x/plugin.go +++ /dev/null @@ -1,17 +0,0 @@ -// Plugin x provides the X11 backend as a plugin. -package main - -import "git.tebibyte.media/tomo/x" -import "git.tebibyte.media/tomo/tomo" - -func init () { - tomo.Register(0, tomo.Factory(x.NewBackend)) -} - -func Name () string { - return "X" -} - -func Description () string { - return "Provides an X11 backend." -}