10 lines
133 B
Go
10 lines
133 B
Go
|
|
package httpDelivery
|
||
|
|
|
||
|
|
import (
|
||
|
|
"errors"
|
||
|
|
)
|
||
|
|
|
||
|
|
const logGetImage = "Image delivery | Get image"
|
||
|
|
|
||
|
|
var notFound = errors.New("not found")
|