aboutsummaryrefslogtreecommitdiff
path: root/src/remove.lua
diff options
context:
space:
mode:
authorNathan Reiner <nathan@nathanreiner.xyz>2026-04-20 14:47:58 +0200
committerNathan Reiner <nathan@nathanreiner.xyz>2026-04-20 14:47:58 +0200
commit96e11c169cde65194c1136e6b40c1bbea35c813a (patch)
tree29abfee5f3e8f37a53ae4f674b926f497827d963 /src/remove.lua
parent0686b40f979f4607b3fd8cca21c463e98f617666 (diff)
create cli
Diffstat (limited to 'src/remove.lua')
-rw-r--r--src/remove.lua8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/remove.lua b/src/remove.lua
new file mode 100644
index 0000000..3877324
--- /dev/null
+++ b/src/remove.lua
@@ -0,0 +1,8 @@
+return function()
+ local args = require('arg') {
+ strict = true,
+ { name = "template" },
+ }
+
+ manager.remove(args.template)
+end