Files
fn-serverless/api/models/logs.go
James Jeffrey 81e39b210d Add go fmt
2017-07-07 10:14:08 -07:00

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
}