github.com/blend/go-sdk@v1.20240719.1/sentry/sender.go (about)

     1  /*
     2  
     3  Copyright (c) 2024 - Present. Blend Labs, Inc. All rights reserved
     4  Use of this source code is governed by a MIT license that can be found in the LICENSE file.
     5  
     6  */
     7  
     8  package sentry
     9  
    10  import (
    11  	"context"
    12  
    13  	"github.com/blend/go-sdk/logger"
    14  )
    15  
    16  // Sender is the type that the sentry client ascribes to.
    17  type Sender interface {
    18  	Notify(context.Context, logger.ErrorEvent)
    19  }