8 lines
106 B
Go
8 lines
106 B
Go
package common
|
|
|
|
import "github.com/google/uuid"
|
|
|
|
type ImageResult struct {
|
|
Id uuid.UUID
|
|
Path string
|
|
}
|