├── .gitignore ├── CONTRIBUTORS.md ├── Dockerfile ├── LICENSE ├── Makefile ├── README.md ├── README.zh.md ├── api ├── README.md ├── README.zh.md ├── consts.go ├── error.go ├── jsontypes.go ├── path.go └── state.go ├── client ├── check.go ├── client.go ├── common.go ├── state.go ├── upload.go └── url.go ├── common ├── logger │ └── logger.go └── util │ ├── fs.go │ ├── handler.go │ ├── string.go │ └── util.go ├── deploy.md ├── deploy.zh.md ├── entry.go ├── go.mod ├── go.sum ├── init.go ├── plugins ├── README.md ├── README.zh.md ├── args.go ├── fs │ ├── README.md │ ├── README.zh.md │ ├── extra.go │ ├── fs.go │ ├── init.go │ ├── save.go │ ├── state.go │ └── url.go ├── manager.go ├── qiniu │ ├── README.md │ ├── README.zh.md │ ├── init.go │ ├── qiniu.go │ ├── save.go │ ├── state.go │ └── url.go ├── task.go ├── tencent │ ├── ci │ │ ├── README.md │ │ ├── README.zh.md │ │ ├── ci.go │ │ ├── init.go │ │ ├── save.go │ │ ├── state.go │ │ └── url.go │ ├── cos │ │ ├── README.md │ │ ├── README.zh.md │ │ ├── client.go │ │ ├── cos.go │ │ ├── cosargs.go │ │ ├── init.go │ │ ├── save.go │ │ ├── state.go │ │ └── url.go │ └── envvar.go ├── types.go ├── upai │ ├── README.md │ ├── README.zh.md │ ├── init.go │ ├── save.go │ ├── state.go │ ├── upai.go │ └── url.go └── weibo │ ├── README.md │ ├── README.zh.md │ ├── client.go │ ├── extra.go │ ├── init.go │ ├── save.go │ ├── state.go │ ├── url.go │ └── weibo.go ├── rikkac ├── README.md ├── README.zh.md ├── file.go ├── format.go ├── params.go ├── rikkac.go └── worker.go └── server ├── apiserver ├── jsonutil.go ├── start.go ├── state.go ├── upload.go └── url.go ├── start.go └── webserver ├── check.go ├── context.go ├── index.go ├── path.go ├── start.go ├── static.go ├── static ├── css │ ├── common.css │ ├── index.css │ └── view.css ├── image │ ├── favicon.png │ └── rikka.png └── js │ ├── checkForm.js │ ├── copy.js │ ├── getSrc.js │ └── onError.js ├── templates ├── index.html ├── view.html └── viewFinish.html └── view.go /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7sDream/rikka/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7sDream/rikka/HEAD/CONTRIBUTORS.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7sDream/rikka/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7sDream/rikka/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7sDream/rikka/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7sDream/rikka/HEAD/README.md -------------------------------------------------------------------------------- /README.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7sDream/rikka/HEAD/README.zh.md -------------------------------------------------------------------------------- /api/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7sDream/rikka/HEAD/api/README.md -------------------------------------------------------------------------------- /api/README.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7sDream/rikka/HEAD/api/README.zh.md -------------------------------------------------------------------------------- /api/consts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7sDream/rikka/HEAD/api/consts.go -------------------------------------------------------------------------------- /api/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7sDream/rikka/HEAD/api/error.go -------------------------------------------------------------------------------- /api/jsontypes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7sDream/rikka/HEAD/api/jsontypes.go -------------------------------------------------------------------------------- /api/path.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7sDream/rikka/HEAD/api/path.go -------------------------------------------------------------------------------- /api/state.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7sDream/rikka/HEAD/api/state.go -------------------------------------------------------------------------------- /client/check.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7sDream/rikka/HEAD/client/check.go -------------------------------------------------------------------------------- /client/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7sDream/rikka/HEAD/client/client.go -------------------------------------------------------------------------------- /client/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7sDream/rikka/HEAD/client/common.go -------------------------------------------------------------------------------- /client/state.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7sDream/rikka/HEAD/client/state.go -------------------------------------------------------------------------------- /client/upload.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7sDream/rikka/HEAD/client/upload.go -------------------------------------------------------------------------------- /client/url.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7sDream/rikka/HEAD/client/url.go -------------------------------------------------------------------------------- /common/logger/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7sDream/rikka/HEAD/common/logger/logger.go -------------------------------------------------------------------------------- /common/util/fs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7sDream/rikka/HEAD/common/util/fs.go -------------------------------------------------------------------------------- /common/util/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7sDream/rikka/HEAD/common/util/handler.go -------------------------------------------------------------------------------- /common/util/string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7sDream/rikka/HEAD/common/util/string.go -------------------------------------------------------------------------------- /common/util/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7sDream/rikka/HEAD/common/util/util.go -------------------------------------------------------------------------------- /deploy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7sDream/rikka/HEAD/deploy.md -------------------------------------------------------------------------------- /deploy.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7sDream/rikka/HEAD/deploy.zh.md -------------------------------------------------------------------------------- /entry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7sDream/rikka/HEAD/entry.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7sDream/rikka/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7sDream/rikka/HEAD/go.sum -------------------------------------------------------------------------------- /init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7sDream/rikka/HEAD/init.go -------------------------------------------------------------------------------- /plugins/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7sDream/rikka/HEAD/plugins/README.md -------------------------------------------------------------------------------- /plugins/README.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7sDream/rikka/HEAD/plugins/README.zh.md -------------------------------------------------------------------------------- /plugins/args.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7sDream/rikka/HEAD/plugins/args.go -------------------------------------------------------------------------------- /plugins/fs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7sDream/rikka/HEAD/plugins/fs/README.md -------------------------------------------------------------------------------- /plugins/fs/README.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7sDream/rikka/HEAD/plugins/fs/README.zh.md -------------------------------------------------------------------------------- /plugins/fs/extra.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7sDream/rikka/HEAD/plugins/fs/extra.go -------------------------------------------------------------------------------- /plugins/fs/fs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7sDream/rikka/HEAD/plugins/fs/fs.go -------------------------------------------------------------------------------- /plugins/fs/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7sDream/rikka/HEAD/plugins/fs/init.go -------------------------------------------------------------------------------- /plugins/fs/save.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7sDream/rikka/HEAD/plugins/fs/save.go -------------------------------------------------------------------------------- /plugins/fs/state.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7sDream/rikka/HEAD/plugins/fs/state.go -------------------------------------------------------------------------------- /plugins/fs/url.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7sDream/rikka/HEAD/plugins/fs/url.go -------------------------------------------------------------------------------- /plugins/manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7sDream/rikka/HEAD/plugins/manager.go -------------------------------------------------------------------------------- /plugins/qiniu/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7sDream/rikka/HEAD/plugins/qiniu/README.md -------------------------------------------------------------------------------- /plugins/qiniu/README.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7sDream/rikka/HEAD/plugins/qiniu/README.zh.md -------------------------------------------------------------------------------- /plugins/qiniu/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7sDream/rikka/HEAD/plugins/qiniu/init.go -------------------------------------------------------------------------------- /plugins/qiniu/qiniu.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7sDream/rikka/HEAD/plugins/qiniu/qiniu.go -------------------------------------------------------------------------------- /plugins/qiniu/save.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7sDream/rikka/HEAD/plugins/qiniu/save.go -------------------------------------------------------------------------------- /plugins/qiniu/state.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7sDream/rikka/HEAD/plugins/qiniu/state.go -------------------------------------------------------------------------------- /plugins/qiniu/url.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7sDream/rikka/HEAD/plugins/qiniu/url.go -------------------------------------------------------------------------------- /plugins/task.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7sDream/rikka/HEAD/plugins/task.go -------------------------------------------------------------------------------- /plugins/tencent/ci/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7sDream/rikka/HEAD/plugins/tencent/ci/README.md -------------------------------------------------------------------------------- /plugins/tencent/ci/README.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7sDream/rikka/HEAD/plugins/tencent/ci/README.zh.md -------------------------------------------------------------------------------- /plugins/tencent/ci/ci.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7sDream/rikka/HEAD/plugins/tencent/ci/ci.go -------------------------------------------------------------------------------- /plugins/tencent/ci/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7sDream/rikka/HEAD/plugins/tencent/ci/init.go -------------------------------------------------------------------------------- /plugins/tencent/ci/save.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7sDream/rikka/HEAD/plugins/tencent/ci/save.go -------------------------------------------------------------------------------- /plugins/tencent/ci/state.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7sDream/rikka/HEAD/plugins/tencent/ci/state.go -------------------------------------------------------------------------------- /plugins/tencent/ci/url.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7sDream/rikka/HEAD/plugins/tencent/ci/url.go -------------------------------------------------------------------------------- /plugins/tencent/cos/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7sDream/rikka/HEAD/plugins/tencent/cos/README.md -------------------------------------------------------------------------------- /plugins/tencent/cos/README.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7sDream/rikka/HEAD/plugins/tencent/cos/README.zh.md -------------------------------------------------------------------------------- /plugins/tencent/cos/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7sDream/rikka/HEAD/plugins/tencent/cos/client.go -------------------------------------------------------------------------------- /plugins/tencent/cos/cos.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7sDream/rikka/HEAD/plugins/tencent/cos/cos.go -------------------------------------------------------------------------------- /plugins/tencent/cos/cosargs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7sDream/rikka/HEAD/plugins/tencent/cos/cosargs.go -------------------------------------------------------------------------------- /plugins/tencent/cos/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7sDream/rikka/HEAD/plugins/tencent/cos/init.go -------------------------------------------------------------------------------- /plugins/tencent/cos/save.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7sDream/rikka/HEAD/plugins/tencent/cos/save.go -------------------------------------------------------------------------------- /plugins/tencent/cos/state.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7sDream/rikka/HEAD/plugins/tencent/cos/state.go -------------------------------------------------------------------------------- /plugins/tencent/cos/url.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7sDream/rikka/HEAD/plugins/tencent/cos/url.go -------------------------------------------------------------------------------- /plugins/tencent/envvar.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7sDream/rikka/HEAD/plugins/tencent/envvar.go -------------------------------------------------------------------------------- /plugins/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7sDream/rikka/HEAD/plugins/types.go -------------------------------------------------------------------------------- /plugins/upai/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7sDream/rikka/HEAD/plugins/upai/README.md -------------------------------------------------------------------------------- /plugins/upai/README.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7sDream/rikka/HEAD/plugins/upai/README.zh.md -------------------------------------------------------------------------------- /plugins/upai/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7sDream/rikka/HEAD/plugins/upai/init.go -------------------------------------------------------------------------------- /plugins/upai/save.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7sDream/rikka/HEAD/plugins/upai/save.go -------------------------------------------------------------------------------- /plugins/upai/state.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7sDream/rikka/HEAD/plugins/upai/state.go -------------------------------------------------------------------------------- /plugins/upai/upai.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7sDream/rikka/HEAD/plugins/upai/upai.go -------------------------------------------------------------------------------- /plugins/upai/url.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7sDream/rikka/HEAD/plugins/upai/url.go -------------------------------------------------------------------------------- /plugins/weibo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7sDream/rikka/HEAD/plugins/weibo/README.md -------------------------------------------------------------------------------- /plugins/weibo/README.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7sDream/rikka/HEAD/plugins/weibo/README.zh.md -------------------------------------------------------------------------------- /plugins/weibo/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7sDream/rikka/HEAD/plugins/weibo/client.go -------------------------------------------------------------------------------- /plugins/weibo/extra.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7sDream/rikka/HEAD/plugins/weibo/extra.go -------------------------------------------------------------------------------- /plugins/weibo/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7sDream/rikka/HEAD/plugins/weibo/init.go -------------------------------------------------------------------------------- /plugins/weibo/save.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7sDream/rikka/HEAD/plugins/weibo/save.go -------------------------------------------------------------------------------- /plugins/weibo/state.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7sDream/rikka/HEAD/plugins/weibo/state.go -------------------------------------------------------------------------------- /plugins/weibo/url.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7sDream/rikka/HEAD/plugins/weibo/url.go -------------------------------------------------------------------------------- /plugins/weibo/weibo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7sDream/rikka/HEAD/plugins/weibo/weibo.go -------------------------------------------------------------------------------- /rikkac/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7sDream/rikka/HEAD/rikkac/README.md -------------------------------------------------------------------------------- /rikkac/README.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7sDream/rikka/HEAD/rikkac/README.zh.md -------------------------------------------------------------------------------- /rikkac/file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7sDream/rikka/HEAD/rikkac/file.go -------------------------------------------------------------------------------- /rikkac/format.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7sDream/rikka/HEAD/rikkac/format.go -------------------------------------------------------------------------------- /rikkac/params.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7sDream/rikka/HEAD/rikkac/params.go -------------------------------------------------------------------------------- /rikkac/rikkac.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7sDream/rikka/HEAD/rikkac/rikkac.go -------------------------------------------------------------------------------- /rikkac/worker.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7sDream/rikka/HEAD/rikkac/worker.go -------------------------------------------------------------------------------- /server/apiserver/jsonutil.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7sDream/rikka/HEAD/server/apiserver/jsonutil.go -------------------------------------------------------------------------------- /server/apiserver/start.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7sDream/rikka/HEAD/server/apiserver/start.go -------------------------------------------------------------------------------- /server/apiserver/state.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7sDream/rikka/HEAD/server/apiserver/state.go -------------------------------------------------------------------------------- /server/apiserver/upload.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7sDream/rikka/HEAD/server/apiserver/upload.go -------------------------------------------------------------------------------- /server/apiserver/url.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7sDream/rikka/HEAD/server/apiserver/url.go -------------------------------------------------------------------------------- /server/start.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7sDream/rikka/HEAD/server/start.go -------------------------------------------------------------------------------- /server/webserver/check.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7sDream/rikka/HEAD/server/webserver/check.go -------------------------------------------------------------------------------- /server/webserver/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7sDream/rikka/HEAD/server/webserver/context.go -------------------------------------------------------------------------------- /server/webserver/index.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7sDream/rikka/HEAD/server/webserver/index.go -------------------------------------------------------------------------------- /server/webserver/path.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7sDream/rikka/HEAD/server/webserver/path.go -------------------------------------------------------------------------------- /server/webserver/start.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7sDream/rikka/HEAD/server/webserver/start.go -------------------------------------------------------------------------------- /server/webserver/static.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7sDream/rikka/HEAD/server/webserver/static.go -------------------------------------------------------------------------------- /server/webserver/static/css/common.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7sDream/rikka/HEAD/server/webserver/static/css/common.css -------------------------------------------------------------------------------- /server/webserver/static/css/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7sDream/rikka/HEAD/server/webserver/static/css/index.css -------------------------------------------------------------------------------- /server/webserver/static/css/view.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7sDream/rikka/HEAD/server/webserver/static/css/view.css -------------------------------------------------------------------------------- /server/webserver/static/image/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7sDream/rikka/HEAD/server/webserver/static/image/favicon.png -------------------------------------------------------------------------------- /server/webserver/static/image/rikka.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7sDream/rikka/HEAD/server/webserver/static/image/rikka.png -------------------------------------------------------------------------------- /server/webserver/static/js/checkForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7sDream/rikka/HEAD/server/webserver/static/js/checkForm.js -------------------------------------------------------------------------------- /server/webserver/static/js/copy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7sDream/rikka/HEAD/server/webserver/static/js/copy.js -------------------------------------------------------------------------------- /server/webserver/static/js/getSrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7sDream/rikka/HEAD/server/webserver/static/js/getSrc.js -------------------------------------------------------------------------------- /server/webserver/static/js/onError.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7sDream/rikka/HEAD/server/webserver/static/js/onError.js -------------------------------------------------------------------------------- /server/webserver/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7sDream/rikka/HEAD/server/webserver/templates/index.html -------------------------------------------------------------------------------- /server/webserver/templates/view.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7sDream/rikka/HEAD/server/webserver/templates/view.html -------------------------------------------------------------------------------- /server/webserver/templates/viewFinish.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7sDream/rikka/HEAD/server/webserver/templates/viewFinish.html -------------------------------------------------------------------------------- /server/webserver/view.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7sDream/rikka/HEAD/server/webserver/view.go --------------------------------------------------------------------------------