Replacing interface{} with any everywhere (except generated mocks) (#29446)

Этот коммит содержится в:
Jesús Espino
2024-12-15 21:11:36 +01:00
коммит произвёл GitHub
родитель a21d470bee
Коммит d316df6d28
34 изменённых файлов: 96 добавлений и 96 удалений

Просмотреть файл

@@ -21,7 +21,7 @@ import (
func (s *MmctlE2ETestSuite) TestListChannelsCmdF() {
s.SetupTestHelper().InitBasic()
var assertChannelNames = func(want []string, lines []interface{}) {
var assertChannelNames = func(want []string, lines []any) {
var got []string
for i := 0; i < len(lines); i++ {
got = append(got, lines[i].(*model.Channel).Name)