mirror of
https://github.com/Crocmagnon/go-binary-size.git
synced 2024-11-10 02:13:58 +01:00
21 lines
234 B
Go
21 lines
234 B
Go
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()
|
|
}
|