You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
271 B
16 lines
271 B
3 years ago
|
package id3ed
|
||
|
|
||
|
import (
|
||
|
"io"
|
||
|
"os"
|
||
|
)
|
||
|
|
||
|
// I`m still a bit confused about interfaces,
|
||
|
// I`ll look into them and try to figure out
|
||
|
// how to use them properly
|
||
|
type Metadata interface {
|
||
|
Read(io.ReadSeeker) error
|
||
|
Write(io.WriteSeeker) error
|
||
|
WriteToFile(*os.File) error
|
||
|
}
|