10 lines
315 B
Go
10 lines
315 B
Go
|
|
package log
|
||
|
|
|
||
|
|
import "arimelody-web/model"
|
||
|
|
|
||
|
|
type LogRepository interface {
|
||
|
|
Create(logLevel model.LogLevel, logType string, content string) error
|
||
|
|
Get(id string) (*model.Log, error)
|
||
|
|
Search(levelFilters []model.LogLevel, typeFilters []string, content string, limit int, offset int) ([]*model.Log, error)
|
||
|
|
}
|