Files
fn-serverless/api/models/logs.go
2017-06-19 11:38:11 -07:00

13 lines
251 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
}