18 lines
490 B
Go
18 lines
490 B
Go
package mainHandler
|
|
|
|
import (
|
|
"context"
|
|
pb "imageStorage/pkg/proto/imageStorage"
|
|
)
|
|
|
|
func (i *ImageHandler) UploadImage(ctx context.Context, req *pb.UploadImageRequest) (*pb.UploadImageResponse, error) {
|
|
return nil, nil
|
|
}
|
|
|
|
func (i *ImageHandler) GetImage(ctx context.Context, req *pb.GetImageRequest) (*pb.GetImageResponse, error) {
|
|
return nil, nil
|
|
}
|
|
|
|
func (i *ImageHandler) DeleteImage(ctx context.Context, req *pb.DeleteImageRequest) (*pb.GetImageResponse, error) {
|
|
return nil, nil
|
|
}
|