mirror of
https://github.com/kevin-DL/services.git
synced 2026-01-11 19:04:35 +00:00
14 lines
213 B
Go
14 lines
213 B
Go
package handler
|
|
|
|
import (
|
|
"context"
|
|
|
|
pb "github.com/micro/services/nft/proto"
|
|
)
|
|
|
|
type Nft struct{}
|
|
|
|
func (n *Nft) Assets(ctx context.Context, req *pb.AssetsRequest, rsp *pb.AssetsResponse) error {
|
|
return nil
|
|
}
|