Versions in this module Expand all Collapse all v0 v0.0.1 Jun 6, 2021 Changes in this version + type Interface interface + Find func(id uint) (event *models.Event, err error) + IsCurrentlyAdded func(informerName, group, version, resource, namespace, name string) (exist bool, err error) + List func(options ListOptions) (events []models.Event, err error) + Save func(event *models.Event) (err error) + SaveSilently func(event *models.Event) + func New(db *gorm.DB) Interface + type ListOptions struct + After uint + InformerName string + Q string + type Store struct + DB *gorm.DB + func (s *Store) Find(id uint) (event *models.Event, err error) + func (s *Store) IsCurrentlyAdded(informerName, group, version, resource, namespace, name string) (yes bool, err error) + func (s *Store) List(options ListOptions) (events []models.Event, err error) + func (s *Store) Save(event *models.Event) error + func (s *Store) SaveSilently(event *models.Event)