We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In concrete terms this means progressively enhancing the File interface to deal in value.Value:
File
value.Value
type File interface { io.ReadCloser FileName() string FullPath() string IsDirectory() bool NextFile() (File, error) ModTime() time.Time Size() MediaType() string Value() interface{} }
The goal is to eventually end here:
type File interface { Path() string Size() int64 ModTime() time.Time MediaType() string Value() interface{} }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
In concrete terms this means progressively enhancing the
File
interface to deal invalue.Value
:The goal is to eventually end here:
The text was updated successfully, but these errors were encountered: