add ability to set web icon
This commit is contained in:
parent
49d73faa5f
commit
c87a58db0a
@ -72,6 +72,16 @@ func Name(n string) Option {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Icon specifies an icon url to load in the UI
|
||||||
|
func Icon(ico string) Option {
|
||||||
|
return func(o *Options) {
|
||||||
|
if o.Metadata == nil {
|
||||||
|
o.Metadata = make(map[string]string)
|
||||||
|
}
|
||||||
|
o.Metadata["icon"] = ico
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// Unique server id
|
// Unique server id
|
||||||
func Id(id string) Option {
|
func Id(id string) Option {
|
||||||
return func(o *Options) {
|
return func(o *Options) {
|
||||||
|
Loading…
Reference in New Issue
Block a user