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.
20 lines
407 B
20 lines
407 B
package sqlite
|
|
|
|
import (
|
|
"errors"
|
|
|
|
"github.com/gabehf/kanpeki/internal/models"
|
|
)
|
|
|
|
func (s *SqliteDB) SaveMediaInfo(MediaInfo *models.MediaInfo) error {
|
|
return errors.New("not implemented")
|
|
}
|
|
|
|
func (s *SqliteDB) GetMediaInfo(id string) (*models.MediaInfo, error) {
|
|
return nil, errors.New("not implemented")
|
|
}
|
|
|
|
func (s *SqliteDB) DeleteMediaInfo(id string) error {
|
|
return errors.New("not implemented")
|
|
}
|