1
0
Fork 0

refactor: remove feedback

- removed for now so I can focus on the primary objectives
This commit is contained in:
Vojtěch Mareš 2024-05-02 20:02:37 +02:00
parent cb9cc47245
commit 7ed1e05284
Signed by: vojtech.mares
GPG key ID: C6827B976F17240D
3 changed files with 0 additions and 84 deletions

View file

@ -1,14 +0,0 @@
package training
import "github.com/google/uuid"
type FeedbackID uuid.UUID
type Feedback struct {
ID FeedbackID
AttendeeID AttendeeID
Rating int
Comment string
IsAnonymous bool
IsSharingAllowed bool
}

View file

@ -1,9 +0,0 @@
package training
type FeedbackRepository interface {
Get(FeedbackID) (*Feedback, error)
FindAll() ([]Feedback, error)
Create(*Feedback) error
Update(*Feedback) error
Delete(FeedbackID) error
}