forked from free-lancers/electricity_bill_calc_service
feat(region):加入服务启动时同步行政区划。
This commit is contained in:
10
utils/utils.go
Normal file
10
utils/utils.go
Normal file
@@ -0,0 +1,10 @@
|
||||
package utils
|
||||
|
||||
func Contains[T string | int | uint](element T, slice []T) bool {
|
||||
for _, v := range slice {
|
||||
if v == element {
|
||||
return true
|
||||
}
|
||||
}
|
||||
return false
|
||||
}
|
Reference in New Issue
Block a user