8 lines
115 B
Go
8 lines
115 B
Go
package audit
|
|
|
|
import "context"
|
|
|
|
type Repository interface {
|
|
Create(ctx context.Context, entry *AuditLog) error
|
|
}
|