mirror of
https://shylinux.com/x/icebergs
synced 2025-04-25 17:18:05 +08:00
15 lines
408 B
Go
15 lines
408 B
Go
package chrome
|
|
|
|
import "shylinux.com/x/ice"
|
|
|
|
type chrome struct {
|
|
ice.Code
|
|
source string `data:"https://mirrors.tencent.com/tinycorelinux/4.x/x86/tcz/src/chromium-browser/chromium-22.0.1229.79.tar.xz"`
|
|
list string `name:"list path auto order build download" help:"源码"`
|
|
}
|
|
|
|
func (s chrome) List(m *ice.Message, arg ...string) {
|
|
s.Code.Source(m, "", arg...)
|
|
}
|
|
func init() { ice.CodeCtxCmd(chrome{}) }
|