(ctx context.Context, traceID, requestID string, req types.AIRequest, now time.Time)
| 13 | type serverLedger struct{ s *Server } |
| 14 | |
| 15 | func (l serverLedger) CreateRequest(ctx context.Context, traceID, requestID string, req types.AIRequest, now time.Time) { |
| 16 | l.s.createLedgerRequest(ctx, traceID, requestID, req, now) |
| 17 | } |
| 18 | |
| 19 | func (l serverLedger) Fail(ctx context.Context, requestID string) { |
| 20 | l.s.updateLedgerFailed(ctx, requestID) |
nothing calls this directly
no test coverage detected