-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
22 changed files
with
383 additions
and
643 deletions.
There are no files selected for viewing
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
local d = require("dorm") | ||
local lib, mod = d.lib, d.mod | ||
|
||
local module = mod.create("capture") | ||
|
||
module.load = function() | ||
mod.await("cmd", function(cmd) | ||
cmd.add_commands_from_table({ | ||
["capture"] = { | ||
subcommands = { | ||
update = { | ||
args = 0, | ||
name = "capture.update" | ||
}, | ||
insert = { | ||
name = "capture.insert", | ||
args = 0, | ||
}, | ||
}, | ||
name = "capture" | ||
} | ||
}) | ||
end) | ||
end | ||
|
||
|
||
|
||
module.setup = function() | ||
return { | ||
success = true, | ||
requires = { | ||
"workspace" | ||
} | ||
|
||
} | ||
end | ||
|
||
module.public = { | ||
|
||
} | ||
|
||
module.config.private = { | ||
|
||
} | ||
module.config.public = { | ||
|
||
} | ||
module.private = { | ||
|
||
} | ||
module.events = {} | ||
|
||
|
||
module.events.subscribed = { | ||
cmd = { | ||
["capture.insert"] = true, | ||
["capture.update"] = true, | ||
}, | ||
} | ||
|
||
return module |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
local d = require("dorm") | ||
local lib, mod = d.lib, d.mod | ||
|
||
local module = mod.create("encrypt") | ||
|
||
module.load = function() | ||
mod.await("cmd", function(cmd) | ||
cmd.add_commands_from_table({ | ||
["encrypt"] = { | ||
subcommands = { | ||
update = { | ||
args = 0, | ||
name = "encrypt.update" | ||
}, | ||
insert = { | ||
name = "encrypt.insert", | ||
args = 0, | ||
}, | ||
}, | ||
name = "encrypt" | ||
} | ||
}) | ||
end) | ||
end | ||
|
||
|
||
|
||
module.setup = function() | ||
return { | ||
success = true, | ||
requires = { | ||
"workspace" | ||
} | ||
|
||
} | ||
end | ||
|
||
module.public = { | ||
|
||
} | ||
|
||
module.config.private = { | ||
|
||
} | ||
module.config.public = { | ||
|
||
} | ||
module.private = { | ||
|
||
} | ||
module.events = {} | ||
|
||
|
||
module.events.subscribed = { | ||
cmd = { | ||
["encrypt.insert"] = true, | ||
["encrypt.update"] = true, | ||
}, | ||
} | ||
|
||
return module |
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
local d = require("dorm") | ||
local lib, mod = d.lib, d.mod | ||
|
||
local module = mod.create("metadata") | ||
|
||
module.load = function() | ||
mod.await("cmd", function(cmd) | ||
cmd.add_commands_from_table({ | ||
["metadata"] = { | ||
subcommands = { | ||
update = { | ||
args = 0, | ||
name = "metadata.update" | ||
}, | ||
insert = { | ||
name = "metadata.insert", | ||
args = 0, | ||
}, | ||
}, | ||
name = "metadata" | ||
} | ||
}) | ||
end) | ||
end | ||
|
||
|
||
|
||
module.setup = function() | ||
return { | ||
success = true, | ||
requires = { | ||
"workspace" | ||
} | ||
|
||
} | ||
end | ||
|
||
module.public = { | ||
|
||
} | ||
|
||
module.config.private = { | ||
|
||
} | ||
module.config.public = { | ||
|
||
} | ||
module.private = { | ||
|
||
} | ||
module.events = {} | ||
|
||
|
||
module.events.subscribed = { | ||
cmd = { | ||
["metadata.insert"] = true, | ||
["metadata.update"] = true, | ||
}, | ||
} | ||
|
||
return module |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
local d = require("dorm") | ||
local lib, mod = d.lib, d.mod | ||
|
||
local module = mod.create("run") | ||
|
||
module.load = function() | ||
mod.await("cmd", function(cmd) | ||
cmd.add_commands_from_table({ | ||
["run"] = { | ||
subcommands = { | ||
update = { | ||
args = 0, | ||
name = "run.update" | ||
}, | ||
insert = { | ||
name = "run.insert", | ||
args = 0, | ||
}, | ||
}, | ||
name = "run" | ||
} | ||
}) | ||
end) | ||
end | ||
|
||
|
||
|
||
module.setup = function() | ||
return { | ||
success = true, | ||
requires = { | ||
"workspace" | ||
} | ||
|
||
} | ||
end | ||
|
||
module.public = { | ||
|
||
} | ||
|
||
module.config.private = { | ||
|
||
} | ||
module.config.public = { | ||
|
||
} | ||
module.private = { | ||
|
||
} | ||
module.events = {} | ||
|
||
|
||
module.events.subscribed = { | ||
cmd = { | ||
["run.insert"] = true, | ||
["run.update"] = true, | ||
}, | ||
} | ||
|
||
return module |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
local d = require("dorm") | ||
local lib, mod = d.lib, d.mod | ||
|
||
local module = mod.create("search") | ||
|
||
module.load = function() | ||
mod.await("cmd", function(cmd) | ||
cmd.add_commands_from_table({ | ||
["search"] = { | ||
subcommands = { | ||
update = { | ||
args = 0, | ||
name = "search.update" | ||
}, | ||
insert = { | ||
name = "search.insert", | ||
args = 0, | ||
}, | ||
}, | ||
name = "search" | ||
} | ||
}) | ||
end) | ||
end | ||
|
||
|
||
|
||
module.setup = function() | ||
return { | ||
success = true, | ||
requires = { | ||
"workspace" | ||
} | ||
|
||
} | ||
end | ||
|
||
module.public = { | ||
|
||
} | ||
|
||
module.config.private = { | ||
|
||
} | ||
module.config.public = { | ||
|
||
} | ||
module.private = { | ||
|
||
} | ||
module.events = {} | ||
|
||
|
||
module.events.subscribed = { | ||
cmd = { | ||
["search.insert"] = true, | ||
["search.update"] = true, | ||
}, | ||
} | ||
|
||
return module |
Oops, something went wrong.