go-binary-size/mod1/a2/a.go

22 lines
234 B
Go
Raw Normal View History

2024-04-03 00:55:22 +02:00
package a2
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()
}