mirror of
https://github.com/lxsang/antd-web-apps
synced 2024-11-20 02:18:20 +01:00
14 lines
424 B
Lua
14 lines
424 B
Lua
require(CONTROLLER_ROOT..".doccontroller")
|
|
DocController:subclass("AntosController", {
|
|
path_map = {
|
|
vfs_path = "book://",
|
|
local_path = "/home/mrsang/doc/antos",
|
|
api_path = "/opt/www/htdocs/doc/antos"
|
|
},
|
|
name = "antos",
|
|
elinks = {
|
|
{ name = "API", url = "https://doc.iohub.dev/antos/api/index.html" },
|
|
{ name = "Code", url = "https://github.com/lxsang/antos" }
|
|
}
|
|
})
|