8 lines
93 B
Go
8 lines
93 B
Go
package data
|
|
|
|
type BrowsingData interface {
|
|
Parse(masterKey []byte) error
|
|
|
|
Name() string
|
|
}
|