1
0
forked from x/icebergs
This commit is contained in:
harveyshao 2021-09-29 00:17:29 +08:00
parent 8369d4e0f2
commit 46cee7a64e
3 changed files with 10 additions and 2 deletions

View File

@ -150,10 +150,13 @@ ish_miss_prepare_compile
ish_miss_prepare_develop ish_miss_prepare_develop
ish_miss_prepare_install ish_miss_prepare_install
ish_miss_prepare release
# ish_miss_prepare wubi-dict # ish_miss_prepare wubi-dict
# ish_miss_prepare word-dict # ish_miss_prepare word-dict
# ish_miss_prepare linux-story
# ish_miss_prepare mysql-story
ish_miss_prepare release
ish_miss_prepare_contexts ish_miss_prepare_contexts
# ish_miss_prepare_intshell # ish_miss_prepare_intshell
# ish_miss_prepare_icebergs # ish_miss_prepare_icebergs

2
go.mod
View File

@ -7,5 +7,5 @@ require (
github.com/kr/pty v1.1.8 github.com/kr/pty v1.1.8
github.com/skip2/go-qrcode v0.0.0-20200617195104-da1b6568686e github.com/skip2/go-qrcode v0.0.0-20200617195104-da1b6568686e
golang.org/x/crypto v0.0.0-20210322153248-0c34fe9e7dc2 golang.org/x/crypto v0.0.0-20210322153248-0c34fe9e7dc2
shylinux.com/x/toolkits v0.3.1 shylinux.com/x/toolkits v0.3.2
) )

View File

@ -5,6 +5,7 @@ import (
"encoding/csv" "encoding/csv"
"encoding/json" "encoding/json"
"fmt" "fmt"
"net/url"
"path" "path"
"reflect" "reflect"
"runtime" "runtime"
@ -474,3 +475,7 @@ func (m *Message) AppendTrans(cb func(value string, key string, index int) strin
} }
} }
} }
func (m *Message) OptionUserWeb() *url.URL {
return kit.ParseURL(m.Option(MSG_USERWEB))
}