go-binary-size/mod1/a/a.go
2024-04-03 00:55:22 +02:00

21 lines
233 B
Go

package a
import (
"encoding/json"
"fmt"
"github.com/gin-gonic/gin"
)
type SomeStruct struct {
field int
}
type SomeInt interface {
Func() json.Decoder
}
func Func1() *gin.Engine {
fmt.Println("func1")
return gin.New()
}