Files

15 lines
196 B
Go

package profile
import (
"context"
)
type Profile struct {
Id int `json:"id"`
Name string `json:"name"`
}
type Service interface {
Get(ctx context.Context, id int) (*Profile, error)
}