9 lines
198 B
Go
9 lines
198 B
Go
package callbacksdb
|
|
|
|
import "github.com/tech/sendico/pkg/model"
|
|
|
|
type callbackInternal struct {
|
|
model.Callback `bson:",inline" json:",inline"`
|
|
SecretRef string `bson:"secret_ref" json:"-"`
|
|
}
|