1
0
forked from x/icebergs
This commit is contained in:
IT 老营长 @云轩领航-创始人 2023-12-11 16:40:44 +08:00
parent 149412b1a5
commit 8684e804d3

View File

@ -184,9 +184,9 @@ func (s relay) ForFlow(m *ice.Message) {
func (s relay) List(m *ice.Message, arg ...string) *ice.Message {
if s.Hash.List(m, arg...); len(arg) == 0 {
if m.Length() == 0 {
m.Action(s.Compile, s.Publish, s.Pubkey, s.Create)
m.Action(s.Create, s.Compile, s.Publish, s.Pubkey)
} else {
m.Action(s.Compile, s.Publish, s.Pubkey, s.Create, s.Upgrade, s.Version, s.Stats, s.ForEach, s.ForFlow)
m.Action(s.Create, s.Upgrade, s.Version, s.Stats, s.ForEach, s.ForFlow, s.Compile, s.Publish, s.Pubkey)
}
}
stats := map[string]int{}