/
githubmirror
/
GoFrame
Обзор
Документация
Войти
/
githubmirror
/
GoFrame
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
net/gsel/gsel_builder_random.go
17 строк
433 B
John Guo
improve service registry for package ghttp/gclient
27 янв 2022, 13:12
27 янв 2022, 13:12
3a658cd
Код
Авторство
О чём код?
// Copyright GoFrame Author(https://goframe.org). All Rights Reserved. // // This Source Code Form is subject to the terms of the MIT License. // If a copy of the MIT was not distributed with this file, // You can obtain one at https://github.com/gogf/gf. package gsel type builderRandom struct{} func NewBuilderRandom() Builder { return &builderRandom{} } func (*builderRandom) Build() Selector { return NewSelectorRandom() }