mirror of
https://github.com/fnproject/fn.git
synced 2022-10-28 21:29:17 +03:00
12 lines
250 B
Go
12 lines
250 B
Go
package models
|
|
|
|
import (
|
|
"context"
|
|
)
|
|
|
|
type FnLog interface {
|
|
InsertLog(ctx context.Context, callID string, callLog string) error
|
|
GetLog(ctx context.Context, callID string) (*FnCallLog, error)
|
|
DeleteLog(ctx context.Context, callID string) error
|
|
}
|