💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、星火、月之暗面及文生图 广告
go.mod ``` module hello go 1.18 ``` hello.go ``` package main import (     m "hello/model"//m为别名,可以不加 ) func main() {     u1 := m.User{         Age:  100,         Name: "u1",     }     u1.ToString() } ``` model/user.go ``` package model import "fmt" type User struct {     Age  int     Name string } func (u User) ToString() {     fmt.Printf("Name=%s Age=%d\n", u.Name, u.Age) } ```