mirror of
https://github.com/hibiken/asynqmon.git
synced 2025-02-23 20:30:12 +08:00
make embed.FS injectable
This commit is contained in:
parent
0c7eb94fb9
commit
3ec75cad17
23
.github/workflows/release.yml
vendored
23
.github/workflows/release.yml
vendored
@ -36,14 +36,31 @@ jobs:
|
|||||||
- name: Install NPM packages
|
- name: Install NPM packages
|
||||||
run: cd ui && rm yarn.lock && yarn install
|
run: cd ui && rm yarn.lock && yarn install
|
||||||
|
|
||||||
|
- name: Build UI Bundle
|
||||||
|
run: cd ui && yarn build
|
||||||
|
|
||||||
|
- name: Create Release Archive
|
||||||
|
run: tar -czvf ui-assets.tar.gz -C ui/build .
|
||||||
|
|
||||||
- name: Build release binary
|
- name: Build release binary
|
||||||
run: |
|
run: |
|
||||||
GOOS=${{ matrix.goos }} GOARCH=amd64 make build
|
GOOS=${{ matrix.goos }} GOARCH=amd64 make build
|
||||||
tar -czvf asynqmon_${{ steps.release.outputs.tag_name }}_${{ matrix.goos }}_amd64.tar.gz asynqmon
|
tar -czvf asynqmon_${{ steps.release.outputs.tag_name }}_${{ matrix.goos }}_amd64.tar.gz asynqmon
|
||||||
ls
|
ls
|
||||||
|
|
||||||
- name: Upload Release Asset
|
- name: Upload UI Release Asset
|
||||||
id: upload-release-asset
|
id: upload-ui-release-asset
|
||||||
|
uses: actions/upload-release-asset@v1
|
||||||
|
env:
|
||||||
|
GITHUB_TOKEN: ${{ github.token }}
|
||||||
|
with:
|
||||||
|
upload_url: ${{ steps.release.outputs.upload_url }}
|
||||||
|
asset_path: ./ui-assets.tar.gz
|
||||||
|
asset_name: ui-assets.tar.gz
|
||||||
|
asset_content_type: application/gzip
|
||||||
|
|
||||||
|
- name: Upload Go Release Asset
|
||||||
|
id: upload-go-release-asset
|
||||||
uses: actions/upload-release-asset@v1
|
uses: actions/upload-release-asset@v1
|
||||||
env:
|
env:
|
||||||
GITHUB_TOKEN: ${{ github.token }}
|
GITHUB_TOKEN: ${{ github.token }}
|
||||||
@ -51,4 +68,4 @@ jobs:
|
|||||||
upload_url: ${{ steps.release.outputs.upload_url }}
|
upload_url: ${{ steps.release.outputs.upload_url }}
|
||||||
asset_path: ./asynqmon_${{ steps.release.outputs.tag_name }}_${{ matrix.goos }}_amd64.tar.gz
|
asset_path: ./asynqmon_${{ steps.release.outputs.tag_name }}_${{ matrix.goos }}_amd64.tar.gz
|
||||||
asset_name: asynqmon_${{ steps.release.outputs.tag_name }}_${{ matrix.goos }}_amd64.tar.gz
|
asset_name: asynqmon_${{ steps.release.outputs.tag_name }}_${{ matrix.goos }}_amd64.tar.gz
|
||||||
asset_content_type: application/zip
|
asset_content_type: application/gzip
|
||||||
|
13
Makefile
13
Makefile
@ -1,13 +1,16 @@
|
|||||||
.PHONY: assets go_binary build docker
|
.PHONY: assets sync go_binary build docker
|
||||||
|
|
||||||
NODE_PATH = $(PWD)/ui/node_modules
|
NODE_PATH ?= $(PWD)/ui/node_modules
|
||||||
|
|
||||||
assets:
|
assets:
|
||||||
@cd ./ui && yarn install --modules-folder $(NODE_PATH) && yarn build --modules-folder $(NODE_PATH)
|
@if [ ! -d "$(NODE_PATH)" ]; then cd ./ui && yarn install --modules-folder $(NODE_PATH); fi
|
||||||
@rsync -avu --delete "./ui/build/" "./internal/assets"
|
cd ./ui && yarn build --modules-folder $(NODE_PATH)
|
||||||
|
|
||||||
|
sync:
|
||||||
|
rsync -avu --delete "./ui/build/" "./cmd/asynqmon/ui-assets"
|
||||||
|
|
||||||
# Build go binary.
|
# Build go binary.
|
||||||
go_binary: assets
|
go_binary: assets sync
|
||||||
go build -o asynqmon ./cmd/asynqmon
|
go build -o asynqmon ./cmd/asynqmon
|
||||||
|
|
||||||
# Target to build a release binary.
|
# Target to build a release binary.
|
||||||
|
@ -2,6 +2,7 @@ package main
|
|||||||
|
|
||||||
import (
|
import (
|
||||||
"crypto/tls"
|
"crypto/tls"
|
||||||
|
"embed"
|
||||||
"flag"
|
"flag"
|
||||||
"fmt"
|
"fmt"
|
||||||
"log"
|
"log"
|
||||||
@ -75,6 +76,9 @@ func getRedisOptionsFromFlags() (*redis.UniversalOptions, error) {
|
|||||||
return &opts, nil
|
return &opts, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//go:embed ui-assets/*
|
||||||
|
var staticContents embed.FS
|
||||||
|
|
||||||
func main() {
|
func main() {
|
||||||
flag.Parse()
|
flag.Parse()
|
||||||
|
|
||||||
@ -113,12 +117,13 @@ func main() {
|
|||||||
defer redisClient.Close()
|
defer redisClient.Close()
|
||||||
|
|
||||||
router := asynqmon.NewRouter(asynqmon.RouterOptions{
|
router := asynqmon.NewRouter(asynqmon.RouterOptions{
|
||||||
Inspector: inspector,
|
Inspector: inspector,
|
||||||
Middlewares: []mux.MiddlewareFunc{loggingMiddleware},
|
Middlewares: []mux.MiddlewareFunc{loggingMiddleware},
|
||||||
RedisClient: redisClient,
|
RedisClient: redisClient,
|
||||||
})
|
})
|
||||||
|
|
||||||
router.PathPrefix("/").Handler(asynqmon.NewStaticContentHandler())
|
router.PathPrefix("/").
|
||||||
|
Handler(asynqmon.NewStaticContentHandler(staticContents, "ui-assets", "index.html"))
|
||||||
|
|
||||||
c := cors.New(cors.Options{
|
c := cors.New(cors.Options{
|
||||||
AllowedMethods: []string{"GET", "POST", "DELETE"},
|
AllowedMethods: []string{"GET", "POST", "DELETE"},
|
||||||
|
Binary file not shown.
Before Width: | Height: | Size: 15 KiB |
Binary file not shown.
Before Width: | Height: | Size: 43 KiB |
Binary file not shown.
Before Width: | Height: | Size: 13 KiB |
@ -1,17 +0,0 @@
|
|||||||
{
|
|
||||||
"files": {
|
|
||||||
"main.js": "/static/js/main.7f58c4a5.chunk.js",
|
|
||||||
"main.js.map": "/static/js/main.7f58c4a5.chunk.js.map",
|
|
||||||
"runtime-main.js": "/static/js/runtime-main.371e21b1.js",
|
|
||||||
"runtime-main.js.map": "/static/js/runtime-main.371e21b1.js.map",
|
|
||||||
"static/js/2.17755345.chunk.js": "/static/js/2.17755345.chunk.js",
|
|
||||||
"static/js/2.17755345.chunk.js.map": "/static/js/2.17755345.chunk.js.map",
|
|
||||||
"index.html": "/index.html",
|
|
||||||
"static/js/2.17755345.chunk.js.LICENSE.txt": "/static/js/2.17755345.chunk.js.LICENSE.txt"
|
|
||||||
},
|
|
||||||
"entrypoints": [
|
|
||||||
"static/js/runtime-main.371e21b1.js",
|
|
||||||
"static/js/2.17755345.chunk.js",
|
|
||||||
"static/js/main.7f58c4a5.chunk.js"
|
|
||||||
]
|
|
||||||
}
|
|
Binary file not shown.
Before Width: | Height: | Size: 740 B |
Binary file not shown.
Before Width: | Height: | Size: 1.7 KiB |
Binary file not shown.
Before Width: | Height: | Size: 15 KiB |
@ -1 +0,0 @@
|
|||||||
<!doctype html><html lang="en"><head><meta charset="utf-8"/><link rel="icon" type="image/png" href="/favicon.ico"/><link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png"/><link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png"/><meta name="viewport" content="width=device-width,initial-scale=1"/><meta name="theme-color" content="#000000"/><meta name="description" content="Asynq monitoring web console"/><link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png"/><link rel="manifest" href="/manifest.json"/><link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700&display=swap"/><link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons"/><title>Asynq - Monitoring</title></head><body><noscript>You need to enable JavaScript to run this app.</noscript><div id="root"></div><script>!function(e){function r(r){for(var n,i,l=r[0],f=r[1],a=r[2],c=0,s=[];c<l.length;c++)i=l[c],Object.prototype.hasOwnProperty.call(o,i)&&o[i]&&s.push(o[i][0]),o[i]=0;for(n in f)Object.prototype.hasOwnProperty.call(f,n)&&(e[n]=f[n]);for(p&&p(r);s.length;)s.shift()();return u.push.apply(u,a||[]),t()}function t(){for(var e,r=0;r<u.length;r++){for(var t=u[r],n=!0,l=1;l<t.length;l++){var f=t[l];0!==o[f]&&(n=!1)}n&&(u.splice(r--,1),e=i(i.s=t[0]))}return e}var n={},o={1:0},u=[];function i(r){if(n[r])return n[r].exports;var t=n[r]={i:r,l:!1,exports:{}};return e[r].call(t.exports,t,t.exports,i),t.l=!0,t.exports}i.m=e,i.c=n,i.d=function(e,r,t){i.o(e,r)||Object.defineProperty(e,r,{enumerable:!0,get:t})},i.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},i.t=function(e,r){if(1&r&&(e=i(e)),8&r)return e;if(4&r&&"object"==typeof e&&e&&e.__esModule)return e;var t=Object.create(null);if(i.r(t),Object.defineProperty(t,"default",{enumerable:!0,value:e}),2&r&&"string"!=typeof e)for(var n in e)i.d(t,n,function(r){return e[r]}.bind(null,n));return t},i.n=function(e){var r=e&&e.__esModule?function(){return e.default}:function(){return e};return i.d(r,"a",r),r},i.o=function(e,r){return Object.prototype.hasOwnProperty.call(e,r)},i.p="/";var l=this.webpackJsonpui=this.webpackJsonpui||[],f=l.push.bind(l);l.push=r,l=l.slice();for(var a=0;a<l.length;a++)r(l[a]);var p=f;t()}([])</script><script src="/static/js/2.17755345.chunk.js"></script><script src="/static/js/main.7f58c4a5.chunk.js"></script></body></html>
|
|
@ -1,19 +0,0 @@
|
|||||||
{
|
|
||||||
"name": "Asynq Monitoring",
|
|
||||||
"short_name": "Asynqmon",
|
|
||||||
"icons": [
|
|
||||||
{
|
|
||||||
"src": "/android-chrome-192x192.png",
|
|
||||||
"sizes": "192x192",
|
|
||||||
"type": "image/png"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"src": "/android-chrome-512x512.png",
|
|
||||||
"sizes": "512x512",
|
|
||||||
"type": "image/png"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"theme_color": "#ffffff",
|
|
||||||
"background_color": "#ffffff",
|
|
||||||
"display": "standalone"
|
|
||||||
}
|
|
@ -1,3 +0,0 @@
|
|||||||
# https://www.robotstxt.org/robotstxt.html
|
|
||||||
User-agent: *
|
|
||||||
Disallow:
|
|
File diff suppressed because one or more lines are too long
@ -1,253 +0,0 @@
|
|||||||
/*
|
|
||||||
object-assign
|
|
||||||
(c) Sindre Sorhus
|
|
||||||
@license MIT
|
|
||||||
*/
|
|
||||||
|
|
||||||
/*!
|
|
||||||
Copyright (c) 2017 Jed Watson.
|
|
||||||
Licensed under the MIT License (MIT), see
|
|
||||||
http://jedwatson.github.io/classnames
|
|
||||||
*/
|
|
||||||
|
|
||||||
/*! Conditions:: INITIAL */
|
|
||||||
|
|
||||||
/*! Production:: $accept : expression $end */
|
|
||||||
|
|
||||||
/*! Production:: css_value : ANGLE */
|
|
||||||
|
|
||||||
/*! Production:: css_value : CHS */
|
|
||||||
|
|
||||||
/*! Production:: css_value : EMS */
|
|
||||||
|
|
||||||
/*! Production:: css_value : EXS */
|
|
||||||
|
|
||||||
/*! Production:: css_value : FREQ */
|
|
||||||
|
|
||||||
/*! Production:: css_value : LENGTH */
|
|
||||||
|
|
||||||
/*! Production:: css_value : PERCENTAGE */
|
|
||||||
|
|
||||||
/*! Production:: css_value : REMS */
|
|
||||||
|
|
||||||
/*! Production:: css_value : RES */
|
|
||||||
|
|
||||||
/*! Production:: css_value : SUB css_value */
|
|
||||||
|
|
||||||
/*! Production:: css_value : TIME */
|
|
||||||
|
|
||||||
/*! Production:: css_value : VHS */
|
|
||||||
|
|
||||||
/*! Production:: css_value : VMAXS */
|
|
||||||
|
|
||||||
/*! Production:: css_value : VMINS */
|
|
||||||
|
|
||||||
/*! Production:: css_value : VWS */
|
|
||||||
|
|
||||||
/*! Production:: css_variable : CSS_VAR LPAREN CSS_CPROP COMMA math_expression RPAREN */
|
|
||||||
|
|
||||||
/*! Production:: css_variable : CSS_VAR LPAREN CSS_CPROP RPAREN */
|
|
||||||
|
|
||||||
/*! Production:: expression : math_expression EOF */
|
|
||||||
|
|
||||||
/*! Production:: math_expression : LPAREN math_expression RPAREN */
|
|
||||||
|
|
||||||
/*! Production:: math_expression : NESTED_CALC LPAREN math_expression RPAREN */
|
|
||||||
|
|
||||||
/*! Production:: math_expression : SUB PREFIX SUB NESTED_CALC LPAREN math_expression RPAREN */
|
|
||||||
|
|
||||||
/*! Production:: math_expression : css_value */
|
|
||||||
|
|
||||||
/*! Production:: math_expression : css_variable */
|
|
||||||
|
|
||||||
/*! Production:: math_expression : math_expression ADD math_expression */
|
|
||||||
|
|
||||||
/*! Production:: math_expression : math_expression DIV math_expression */
|
|
||||||
|
|
||||||
/*! Production:: math_expression : math_expression MUL math_expression */
|
|
||||||
|
|
||||||
/*! Production:: math_expression : math_expression SUB math_expression */
|
|
||||||
|
|
||||||
/*! Production:: math_expression : value */
|
|
||||||
|
|
||||||
/*! Production:: value : NUMBER */
|
|
||||||
|
|
||||||
/*! Production:: value : SUB NUMBER */
|
|
||||||
|
|
||||||
/*! Rule:: $ */
|
|
||||||
|
|
||||||
/*! Rule:: (--[0-9a-z-A-Z-]*) */
|
|
||||||
|
|
||||||
/*! Rule:: ([0-9]+(\.[0-9]*)?|\.[0-9]+)% */
|
|
||||||
|
|
||||||
/*! Rule:: ([0-9]+(\.[0-9]*)?|\.[0-9]+)Hz\b */
|
|
||||||
|
|
||||||
/*! Rule:: ([0-9]+(\.[0-9]*)?|\.[0-9]+)\b */
|
|
||||||
|
|
||||||
/*! Rule:: ([0-9]+(\.[0-9]*)?|\.[0-9]+)ch\b */
|
|
||||||
|
|
||||||
/*! Rule:: ([0-9]+(\.[0-9]*)?|\.[0-9]+)cm\b */
|
|
||||||
|
|
||||||
/*! Rule:: ([0-9]+(\.[0-9]*)?|\.[0-9]+)deg\b */
|
|
||||||
|
|
||||||
/*! Rule:: ([0-9]+(\.[0-9]*)?|\.[0-9]+)dpcm\b */
|
|
||||||
|
|
||||||
/*! Rule:: ([0-9]+(\.[0-9]*)?|\.[0-9]+)dpi\b */
|
|
||||||
|
|
||||||
/*! Rule:: ([0-9]+(\.[0-9]*)?|\.[0-9]+)dppx\b */
|
|
||||||
|
|
||||||
/*! Rule:: ([0-9]+(\.[0-9]*)?|\.[0-9]+)em\b */
|
|
||||||
|
|
||||||
/*! Rule:: ([0-9]+(\.[0-9]*)?|\.[0-9]+)ex\b */
|
|
||||||
|
|
||||||
/*! Rule:: ([0-9]+(\.[0-9]*)?|\.[0-9]+)grad\b */
|
|
||||||
|
|
||||||
/*! Rule:: ([0-9]+(\.[0-9]*)?|\.[0-9]+)in\b */
|
|
||||||
|
|
||||||
/*! Rule:: ([0-9]+(\.[0-9]*)?|\.[0-9]+)kHz\b */
|
|
||||||
|
|
||||||
/*! Rule:: ([0-9]+(\.[0-9]*)?|\.[0-9]+)mm\b */
|
|
||||||
|
|
||||||
/*! Rule:: ([0-9]+(\.[0-9]*)?|\.[0-9]+)ms\b */
|
|
||||||
|
|
||||||
/*! Rule:: ([0-9]+(\.[0-9]*)?|\.[0-9]+)pc\b */
|
|
||||||
|
|
||||||
/*! Rule:: ([0-9]+(\.[0-9]*)?|\.[0-9]+)pt\b */
|
|
||||||
|
|
||||||
/*! Rule:: ([0-9]+(\.[0-9]*)?|\.[0-9]+)px\b */
|
|
||||||
|
|
||||||
/*! Rule:: ([0-9]+(\.[0-9]*)?|\.[0-9]+)rad\b */
|
|
||||||
|
|
||||||
/*! Rule:: ([0-9]+(\.[0-9]*)?|\.[0-9]+)rem\b */
|
|
||||||
|
|
||||||
/*! Rule:: ([0-9]+(\.[0-9]*)?|\.[0-9]+)s\b */
|
|
||||||
|
|
||||||
/*! Rule:: ([0-9]+(\.[0-9]*)?|\.[0-9]+)turn\b */
|
|
||||||
|
|
||||||
/*! Rule:: ([0-9]+(\.[0-9]*)?|\.[0-9]+)vh\b */
|
|
||||||
|
|
||||||
/*! Rule:: ([0-9]+(\.[0-9]*)?|\.[0-9]+)vmax\b */
|
|
||||||
|
|
||||||
/*! Rule:: ([0-9]+(\.[0-9]*)?|\.[0-9]+)vmin\b */
|
|
||||||
|
|
||||||
/*! Rule:: ([0-9]+(\.[0-9]*)?|\.[0-9]+)vw\b */
|
|
||||||
|
|
||||||
/*! Rule:: ([a-z]+) */
|
|
||||||
|
|
||||||
/*! Rule:: (calc) */
|
|
||||||
|
|
||||||
/*! Rule:: (var) */
|
|
||||||
|
|
||||||
/*! Rule:: , */
|
|
||||||
|
|
||||||
/*! Rule:: - */
|
|
||||||
|
|
||||||
/*! Rule:: \( */
|
|
||||||
|
|
||||||
/*! Rule:: \) */
|
|
||||||
|
|
||||||
/*! Rule:: \* */
|
|
||||||
|
|
||||||
/*! Rule:: \+ */
|
|
||||||
|
|
||||||
/*! Rule:: \/ */
|
|
||||||
|
|
||||||
/*! Rule:: \s+ */
|
|
||||||
|
|
||||||
/*! decimal.js-light v2.5.1 https://github.com/MikeMcl/decimal.js-light/LICENCE */
|
|
||||||
|
|
||||||
/**
|
|
||||||
* A better abstraction over CSS.
|
|
||||||
*
|
|
||||||
* @copyright Oleg Isonen (Slobodskoi) / Isonen 2014-present
|
|
||||||
* @website https://github.com/cssinjs/jss
|
|
||||||
* @license MIT
|
|
||||||
*/
|
|
||||||
|
|
||||||
/** @license React v0.19.1
|
|
||||||
* scheduler.production.min.js
|
|
||||||
*
|
|
||||||
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
||||||
*
|
|
||||||
* This source code is licensed under the MIT license found in the
|
|
||||||
* LICENSE file in the root directory of this source tree.
|
|
||||||
*/
|
|
||||||
|
|
||||||
/** @license React v16.10.2
|
|
||||||
* react-is.production.min.js
|
|
||||||
*
|
|
||||||
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
||||||
*
|
|
||||||
* This source code is licensed under the MIT license found in the
|
|
||||||
* LICENSE file in the root directory of this source tree.
|
|
||||||
*/
|
|
||||||
|
|
||||||
/** @license React v16.13.1
|
|
||||||
* react-is.production.min.js
|
|
||||||
*
|
|
||||||
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
||||||
*
|
|
||||||
* This source code is licensed under the MIT license found in the
|
|
||||||
* LICENSE file in the root directory of this source tree.
|
|
||||||
*/
|
|
||||||
|
|
||||||
/** @license React v16.14.0
|
|
||||||
* react-dom.production.min.js
|
|
||||||
*
|
|
||||||
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
||||||
*
|
|
||||||
* This source code is licensed under the MIT license found in the
|
|
||||||
* LICENSE file in the root directory of this source tree.
|
|
||||||
*/
|
|
||||||
|
|
||||||
/** @license React v16.14.0
|
|
||||||
* react-jsx-runtime.production.min.js
|
|
||||||
*
|
|
||||||
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
||||||
*
|
|
||||||
* This source code is licensed under the MIT license found in the
|
|
||||||
* LICENSE file in the root directory of this source tree.
|
|
||||||
*/
|
|
||||||
|
|
||||||
/** @license React v16.14.0
|
|
||||||
* react.production.min.js
|
|
||||||
*
|
|
||||||
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
||||||
*
|
|
||||||
* This source code is licensed under the MIT license found in the
|
|
||||||
* LICENSE file in the root directory of this source tree.
|
|
||||||
*/
|
|
||||||
|
|
||||||
/** @license React v17.0.1
|
|
||||||
* react-is.production.min.js
|
|
||||||
*
|
|
||||||
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
||||||
*
|
|
||||||
* This source code is licensed under the MIT license found in the
|
|
||||||
* LICENSE file in the root directory of this source tree.
|
|
||||||
*/
|
|
||||||
|
|
||||||
/**!
|
|
||||||
* @fileOverview Kickass library to create and place poppers near their reference elements.
|
|
||||||
* @version 1.16.1-lts
|
|
||||||
* @license
|
|
||||||
* Copyright (c) 2016 Federico Zivolo and contributors
|
|
||||||
*
|
|
||||||
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
||||||
* of this software and associated documentation files (the "Software"), to deal
|
|
||||||
* in the Software without restriction, including without limitation the rights
|
|
||||||
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
||||||
* copies of the Software, and to permit persons to whom the Software is
|
|
||||||
* furnished to do so, subject to the following conditions:
|
|
||||||
*
|
|
||||||
* The above copyright notice and this permission notice shall be included in all
|
|
||||||
* copies or substantial portions of the Software.
|
|
||||||
*
|
|
||||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
||||||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
||||||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
||||||
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
||||||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
||||||
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
||||||
* SOFTWARE.
|
|
||||||
*/
|
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -1,2 +0,0 @@
|
|||||||
!function(e){function r(r){for(var n,i,l=r[0],f=r[1],a=r[2],c=0,s=[];c<l.length;c++)i=l[c],Object.prototype.hasOwnProperty.call(o,i)&&o[i]&&s.push(o[i][0]),o[i]=0;for(n in f)Object.prototype.hasOwnProperty.call(f,n)&&(e[n]=f[n]);for(p&&p(r);s.length;)s.shift()();return u.push.apply(u,a||[]),t()}function t(){for(var e,r=0;r<u.length;r++){for(var t=u[r],n=!0,l=1;l<t.length;l++){var f=t[l];0!==o[f]&&(n=!1)}n&&(u.splice(r--,1),e=i(i.s=t[0]))}return e}var n={},o={1:0},u=[];function i(r){if(n[r])return n[r].exports;var t=n[r]={i:r,l:!1,exports:{}};return e[r].call(t.exports,t,t.exports,i),t.l=!0,t.exports}i.m=e,i.c=n,i.d=function(e,r,t){i.o(e,r)||Object.defineProperty(e,r,{enumerable:!0,get:t})},i.r=function(e){"undefined"!==typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},i.t=function(e,r){if(1&r&&(e=i(e)),8&r)return e;if(4&r&&"object"===typeof e&&e&&e.__esModule)return e;var t=Object.create(null);if(i.r(t),Object.defineProperty(t,"default",{enumerable:!0,value:e}),2&r&&"string"!=typeof e)for(var n in e)i.d(t,n,function(r){return e[r]}.bind(null,n));return t},i.n=function(e){var r=e&&e.__esModule?function(){return e.default}:function(){return e};return i.d(r,"a",r),r},i.o=function(e,r){return Object.prototype.hasOwnProperty.call(e,r)},i.p="/";var l=this.webpackJsonpui=this.webpackJsonpui||[],f=l.push.bind(l);l.push=r,l=l.slice();for(var a=0;a<l.length;a++)r(l[a]);var p=f;t()}([]);
|
|
||||||
//# sourceMappingURL=runtime-main.371e21b1.js.map
|
|
File diff suppressed because one or more lines are too long
@ -1,6 +0,0 @@
|
|||||||
package internal
|
|
||||||
|
|
||||||
import "embed"
|
|
||||||
|
|
||||||
//go:embed assets/*
|
|
||||||
var StaticContents embed.FS
|
|
10
static.go
10
static.go
@ -6,15 +6,13 @@ import (
|
|||||||
"io/fs"
|
"io/fs"
|
||||||
"net/http"
|
"net/http"
|
||||||
"path/filepath"
|
"path/filepath"
|
||||||
|
|
||||||
"github.com/ajatprabha/asynqmon/internal"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
func NewStaticContentHandler() http.Handler {
|
func NewStaticContentHandler(contents embed.FS, staticDirPath, indexFileName string) http.Handler {
|
||||||
return &staticContentHandler{
|
return &staticContentHandler{
|
||||||
contents: internal.StaticContents,
|
contents: contents,
|
||||||
staticDirPath: "assets",
|
staticDirPath: staticDirPath,
|
||||||
indexFileName: "index.html",
|
indexFileName: indexFileName,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user