platform: Add group expand status

This commit is contained in:
世界
2023-08-12 19:33:43 +08:00
parent c7aff18c5e
commit a89d51f4f7
5 changed files with 127 additions and 11 deletions

View File

@@ -154,6 +154,8 @@ func (s *CommandServer) handleConnection(conn net.Conn) error {
return s.handleSelectOutbound(conn)
case CommandURLTest:
return s.handleURLTest(conn)
case CommandGroupExpand:
return s.handleSetGroupExpand(conn)
default:
return E.New("unknown command: ", command)
}