Versions in this module Expand all Collapse all v1 v1.0.4 Jan 23, 2024 v1.0.3 Jan 22, 2024 Changes in this version + type Driver struct + func (db *Driver) AddRepo(chatID string, details *repo.Repo) error + func (db *Driver) AllRepos() ([]repo.RepoWithChatID, error) + func (db *Driver) CheckExisting(chatID, repoID string) (bool, error) + func (db *Driver) GetRepos(chatID string) ([]repo.Repo, error) + func (db *Driver) RemoveRepo(chatID, repoID string) error + func (db *Driver) SetPreReleaseRetrieve(chatID, repoID string, newValue bool) error + func (db *Driver) UpdateEntry(repo repo.RepoWithChatID) error + type DriverFactory struct + func (factory *DriverFactory) Create(logger zap.SugaredLogger) database.Database