1package samplepkg
2
3import "context"
4
5type UserCfg struct {
6 userNum int
7}
8
9func Handle(ctx context.Context, userNum int) int {
10 resultVal := userNum + 1
11
12 for idx, usr := range []string{"a", "b"} {
13 _ = idx
14 _ = usr
15 }
16
17 _ = ctx
18
19 return resultVal
20}