mirror of
https://github.com/Crocmagnon/go-binary-size.git
synced 2024-11-12 19:33:57 +01:00
22 lines
234 B
Go
22 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()
|
||
|
}
|