feat 排队

This commit is contained in:
2026-01-06 18:36:15 +08:00
parent 8289e2b4d9
commit 46839cd11b
20 changed files with 482 additions and 96 deletions

View File

@@ -0,0 +1,20 @@
package stream_client
import (
"gateway/internal/testutil"
"github.com/stretchr/testify/suite"
"testing"
)
type SceneTestSuite struct {
testutil.TestSuite
}
func (ts *SceneTestSuite) TestSceneKey() {
r := sceneKey(1122, FunAction)
ts.Assert().Equal("1122-0", r)
}
func TestLoginTestSuite(t *testing.T) {
suite.Run(t, &SceneTestSuite{})
}