howood/imagereductor

View on GitHub
domain/entity/cachedcontent.go

Summary

Maintainability
A
0 mins
Test Coverage
package entity

// CachedContent entity
type CachedContent struct {
    ContentType  string
    LastModified string
    Content      []byte
}