(ctx context.Context, model *pb.Model)
| 757 | } |
| 758 | |
| 759 | func (serv *MetadataServer) CreateModel(ctx context.Context, model *pb.Model) (*pb.Empty, error) { |
| 760 | serv.Logger.Infow("Creating Model", "model", model.Name) |
| 761 | return serv.meta.CreateModel(ctx, model) |
| 762 | } |
| 763 | |
| 764 | func (serv *OnlineServer) FeatureServe(ctx context.Context, req *srv.FeatureServeRequest) (*srv.FeatureRow, error) { |
| 765 | serv.Logger.Infow("Serving Features", "request", req.String()) |
nothing calls this directly
no outgoing calls
no test coverage detected