2020-06-22 22:14:52 +02:00
|
|
|
require(CONTROLLER_ROOT..".doccontroller")
|
|
|
|
DocController:subclass("AntosController", {
|
|
|
|
path_map = {
|
2020-09-15 12:33:51 +02:00
|
|
|
vfs_path = "book://",
|
2023-04-27 14:18:15 +02:00
|
|
|
local_path = DOC_DIR.."/antos",
|
2020-06-22 22:14:52 +02:00
|
|
|
},
|
2020-06-24 19:19:20 +02:00
|
|
|
name = "antos",
|
|
|
|
elinks = {
|
2023-04-27 14:18:15 +02:00
|
|
|
{ name = "API", url = "https://ci.iohub.dev/public/antos-release/doc/1.2.x/" },
|
2020-09-15 16:54:50 +02:00
|
|
|
{ name = "Code", url = "https://github.com/lxsang/antos" }
|
2020-06-24 19:19:20 +02:00
|
|
|
}
|
2020-06-22 22:14:52 +02:00
|
|
|
})
|