forked from x/ContextOS
add iml
This commit is contained in:
parent
b8cd7960cd
commit
3d85d57fe3
2
go.mod
2
go.mod
@ -2,7 +2,7 @@ module shylinux.com/x/contexts
|
|||||||
|
|
||||||
go 1.11
|
go 1.11
|
||||||
|
|
||||||
require shylinux.com/x/ice v0.8.1
|
require shylinux.com/x/ice v0.8.2
|
||||||
|
|
||||||
require (
|
require (
|
||||||
shylinux.com/x/golang-story v0.3.6
|
shylinux.com/x/golang-story v0.3.6
|
||||||
|
4
go.sum
4
go.sum
@ -5,8 +5,8 @@ shylinux.com/x/go-sql-mysql v0.0.1/go.mod h1:47OfAZK24HRJMy7dAu/jrksGCf9yzJaAUFw
|
|||||||
shylinux.com/x/golang-story v0.3.6 h1:3yMPRZK/bW9oaWquhlagJZq8LTLY3sQxrt+rvkSrGO4=
|
shylinux.com/x/golang-story v0.3.6 h1:3yMPRZK/bW9oaWquhlagJZq8LTLY3sQxrt+rvkSrGO4=
|
||||||
shylinux.com/x/golang-story v0.3.6/go.mod h1:4nkJ5zyhNNC2ulPsf6WowneJ+axCw8eWMpsLwiQrvgg=
|
shylinux.com/x/golang-story v0.3.6/go.mod h1:4nkJ5zyhNNC2ulPsf6WowneJ+axCw8eWMpsLwiQrvgg=
|
||||||
shylinux.com/x/ice v0.7.6/go.mod h1:cnR4S2jWpPKuUsmnnul1gZCIZeuFeO17ieHbXmWjwpM=
|
shylinux.com/x/ice v0.7.6/go.mod h1:cnR4S2jWpPKuUsmnnul1gZCIZeuFeO17ieHbXmWjwpM=
|
||||||
shylinux.com/x/ice v0.8.1 h1:lf9hsthbWeMtUJZ9jrE+fWUmcXUcJ3igkobaT7hlFzE=
|
shylinux.com/x/ice v0.8.2 h1:VepFJYaX7OBI2XHhS+9qZxeiYcqRmZsOKjIf/abtcdY=
|
||||||
shylinux.com/x/ice v0.8.1/go.mod h1:lyjm480UtLgn0UsZGHOneTLwUUQ/GaSQcn7pDY64hS4=
|
shylinux.com/x/ice v0.8.2/go.mod h1:lyjm480UtLgn0UsZGHOneTLwUUQ/GaSQcn7pDY64hS4=
|
||||||
shylinux.com/x/icebergs v1.0.3/go.mod h1:1fRX95S0HcbeVk1emgtPugJPaR15xhGo3qNYxqIUgCw=
|
shylinux.com/x/icebergs v1.0.3/go.mod h1:1fRX95S0HcbeVk1emgtPugJPaR15xhGo3qNYxqIUgCw=
|
||||||
shylinux.com/x/icebergs v1.0.8 h1:Vi/gwr7VTlupZfgcd7TuCHeZD1V1O6YXtyi3ognXLgU=
|
shylinux.com/x/icebergs v1.0.8 h1:Vi/gwr7VTlupZfgcd7TuCHeZD1V1O6YXtyi3ognXLgU=
|
||||||
shylinux.com/x/icebergs v1.0.8/go.mod h1:1fRX95S0HcbeVk1emgtPugJPaR15xhGo3qNYxqIUgCw=
|
shylinux.com/x/icebergs v1.0.8/go.mod h1:1fRX95S0HcbeVk1emgtPugJPaR15xhGo3qNYxqIUgCw=
|
||||||
|
@ -2,7 +2,7 @@ module shylinux.com/x/contexts
|
|||||||
|
|
||||||
go 1.11
|
go 1.11
|
||||||
|
|
||||||
require shylinux.com/x/ice v0.8.1
|
require shylinux.com/x/ice v0.8.2
|
||||||
|
|
||||||
require (
|
require (
|
||||||
shylinux.com/x/golang-story v0.3.6
|
shylinux.com/x/golang-story v0.3.6
|
||||||
|
@ -1,8 +1,6 @@
|
|||||||
package main
|
package main
|
||||||
|
|
||||||
import (
|
import (
|
||||||
_ "shylinux.com/x/contexts/src/hi"
|
|
||||||
|
|
||||||
"shylinux.com/x/ice"
|
"shylinux.com/x/ice"
|
||||||
|
|
||||||
_ "shylinux.com/x/icebergs/misc/alpha"
|
_ "shylinux.com/x/icebergs/misc/alpha"
|
||||||
@ -36,6 +34,8 @@ import (
|
|||||||
_ "shylinux.com/x/linux-story/src/busybox"
|
_ "shylinux.com/x/linux-story/src/busybox"
|
||||||
_ "shylinux.com/x/linux-story/src/kernel"
|
_ "shylinux.com/x/linux-story/src/kernel"
|
||||||
_ "shylinux.com/x/linux-story/src/qemu"
|
_ "shylinux.com/x/linux-story/src/qemu"
|
||||||
|
|
||||||
|
_ "shylinux.com/x/contexts/src/hi"
|
||||||
)
|
)
|
||||||
|
|
||||||
func main() { println(ice.Run()) }
|
func main() { print(ice.Run()) }
|
||||||
|
@ -2,7 +2,7 @@ module shylinux.com/x/contexts
|
|||||||
|
|
||||||
go 1.11
|
go 1.11
|
||||||
|
|
||||||
require shylinux.com/x/ice v0.8.1
|
require shylinux.com/x/ice v0.8.2
|
||||||
|
|
||||||
require (
|
require (
|
||||||
shylinux.com/x/golang-story v0.3.6
|
shylinux.com/x/golang-story v0.3.6
|
||||||
|
@ -5,8 +5,8 @@ shylinux.com/x/go-sql-mysql v0.0.1/go.mod h1:47OfAZK24HRJMy7dAu/jrksGCf9yzJaAUFw
|
|||||||
shylinux.com/x/golang-story v0.3.6 h1:3yMPRZK/bW9oaWquhlagJZq8LTLY3sQxrt+rvkSrGO4=
|
shylinux.com/x/golang-story v0.3.6 h1:3yMPRZK/bW9oaWquhlagJZq8LTLY3sQxrt+rvkSrGO4=
|
||||||
shylinux.com/x/golang-story v0.3.6/go.mod h1:4nkJ5zyhNNC2ulPsf6WowneJ+axCw8eWMpsLwiQrvgg=
|
shylinux.com/x/golang-story v0.3.6/go.mod h1:4nkJ5zyhNNC2ulPsf6WowneJ+axCw8eWMpsLwiQrvgg=
|
||||||
shylinux.com/x/ice v0.7.6/go.mod h1:cnR4S2jWpPKuUsmnnul1gZCIZeuFeO17ieHbXmWjwpM=
|
shylinux.com/x/ice v0.7.6/go.mod h1:cnR4S2jWpPKuUsmnnul1gZCIZeuFeO17ieHbXmWjwpM=
|
||||||
shylinux.com/x/ice v0.8.1 h1:lf9hsthbWeMtUJZ9jrE+fWUmcXUcJ3igkobaT7hlFzE=
|
shylinux.com/x/ice v0.8.2 h1:VepFJYaX7OBI2XHhS+9qZxeiYcqRmZsOKjIf/abtcdY=
|
||||||
shylinux.com/x/ice v0.8.1/go.mod h1:lyjm480UtLgn0UsZGHOneTLwUUQ/GaSQcn7pDY64hS4=
|
shylinux.com/x/ice v0.8.2/go.mod h1:lyjm480UtLgn0UsZGHOneTLwUUQ/GaSQcn7pDY64hS4=
|
||||||
shylinux.com/x/icebergs v1.0.3/go.mod h1:1fRX95S0HcbeVk1emgtPugJPaR15xhGo3qNYxqIUgCw=
|
shylinux.com/x/icebergs v1.0.3/go.mod h1:1fRX95S0HcbeVk1emgtPugJPaR15xhGo3qNYxqIUgCw=
|
||||||
shylinux.com/x/icebergs v1.0.8 h1:Vi/gwr7VTlupZfgcd7TuCHeZD1V1O6YXtyi3ognXLgU=
|
shylinux.com/x/icebergs v1.0.8 h1:Vi/gwr7VTlupZfgcd7TuCHeZD1V1O6YXtyi3ognXLgU=
|
||||||
shylinux.com/x/icebergs v1.0.8/go.mod h1:1fRX95S0HcbeVk1emgtPugJPaR15xhGo3qNYxqIUgCw=
|
shylinux.com/x/icebergs v1.0.8/go.mod h1:1fRX95S0HcbeVk1emgtPugJPaR15xhGo3qNYxqIUgCw=
|
||||||
|
7
src/website/hi.iml
Normal file
7
src/website/hi.iml
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
hi
|
||||||
|
he
|
||||||
|
cli.runtime
|
||||||
|
cli.system
|
||||||
|
hi/hi.sh
|
||||||
|
hi/hi.go
|
||||||
|
hi/hi.js
|
@ -1,5 +0,0 @@
|
|||||||
hi
|
|
||||||
h1
|
|
||||||
hi/hi.sh
|
|
||||||
hi/hi.go
|
|
||||||
hi/hi.js
|
|
77
src/website/index.iml
Normal file
77
src/website/index.iml
Normal file
@ -0,0 +1,77 @@
|
|||||||
|
service "运营群"
|
||||||
|
wx "公众号 wx"
|
||||||
|
usr/icebergs/misc/wx/wx.shy "微信公众号"
|
||||||
|
mp "小程序 mp"
|
||||||
|
usr/icebergs/misc/mp/mp.shy "微信小程序"
|
||||||
|
lark "机器人 lark"
|
||||||
|
usr/icebergs/misc/lark/lark.shy "飞书机器人"
|
||||||
|
|
||||||
|
product "产品群"
|
||||||
|
office "办公 office"
|
||||||
|
web.wiki.feel "影音媒体"
|
||||||
|
web.wiki.draw "思维导图"
|
||||||
|
web.wiki.data "数据表格"
|
||||||
|
web.team.plan "计划任务"
|
||||||
|
web.wiki.word "智库" args usr/learning/
|
||||||
|
usr/learning/index.shy "索引"
|
||||||
|
src/main.shy "编程"
|
||||||
|
english "英汉 english"
|
||||||
|
web.wiki.alpha.alpha "英汉" args "word hi"
|
||||||
|
web.wiki.alpha.alpha "汉英" args "line 你好"
|
||||||
|
web.code.input.wubi "五笔" args "word wqvb"
|
||||||
|
web.code.input.wubi "五笔" args "line 你好"
|
||||||
|
chrome "爬虫 chrome"
|
||||||
|
web.wiki.feel "网页爬虫" args spide/
|
||||||
|
web.code.chrome.cache "爬虫缓存"
|
||||||
|
web.code.chrome.spide "网页爬虫"
|
||||||
|
web.code.chrome.modify "编辑页面"
|
||||||
|
|
||||||
|
project "研发群"
|
||||||
|
studio "研发 studio"
|
||||||
|
web.code.vimer "编辑器"
|
||||||
|
web.code.git.status "代码库" name repos
|
||||||
|
web.team.plan "任务表"
|
||||||
|
web.wiki.word "上下文"
|
||||||
|
web "网页 web"
|
||||||
|
usr/icebergs/misc/chrome/chrome.shy "浏览器" name HTML5
|
||||||
|
cli "命令 cli"
|
||||||
|
usr/icebergs/misc/bash/bash.shy "命令行"
|
||||||
|
usr/icebergs/misc/git/git.shy "代码库"
|
||||||
|
usr/icebergs/misc/vim/vim.shy "编辑器"
|
||||||
|
usr/icebergs/misc/tmux/tmux.shy "命令行"
|
||||||
|
linux "系统 linux"
|
||||||
|
usr/linux-story/idc/idc.shy "平台"
|
||||||
|
usr/linux-story/iso/iso.shy "系统"
|
||||||
|
usr/linux-story/iot/iot.shy "设备"
|
||||||
|
usr/linux-story/cli/cli.shy "命令"
|
||||||
|
usr/linux-story/src/main.shy "系统"
|
||||||
|
nginx "代理 nginx"
|
||||||
|
usr/nginx-story/src/main.shy "代理"
|
||||||
|
context "编程 context"
|
||||||
|
usr/golang-story/src/main.shy "编程"
|
||||||
|
redis "缓存 redis"
|
||||||
|
usr/redis-story/src/main.shy "缓存"
|
||||||
|
usr/redis-story/src/kafka/kafka.shy "队列"
|
||||||
|
mysql "存储 mysql"
|
||||||
|
usr/mysql-story/src/main.shy "数据存储"
|
||||||
|
usr/mysql-story/src/clickhouse/clickhouse.shy "数据存储"
|
||||||
|
|
||||||
|
profile "测试群"
|
||||||
|
website "定制 website"
|
||||||
|
- web.chat.website web.chat.div web.code.vimer web.dream
|
||||||
|
release "发布 release"
|
||||||
|
~ web.code install upgrade publish compile autogen binpack webpack
|
||||||
|
~ web.code.git status server
|
||||||
|
research "测试 research"
|
||||||
|
~ web.code favor bench pprof case
|
||||||
|
|
||||||
|
operate "运维群"
|
||||||
|
aaa "权限 aaa"
|
||||||
|
- user totp sess role
|
||||||
|
web "应用 web"
|
||||||
|
- serve space dream route
|
||||||
|
- share spide cache story
|
||||||
|
cli "系统 cli"
|
||||||
|
- qrcode daemon system runtime
|
||||||
|
nfs "文件 nfs"
|
||||||
|
- cat dir tail trash
|
Loading…
x
Reference in New Issue
Block a user