mirror of
https://github.com/rcourtman/Pulse.git
synced 2026-05-07 00:37:36 +00:00
11 lines
377 B
Go
11 lines
377 B
Go
package conversion
|
|
|
|
import pkglicensing "github.com/rcourtman/pulse-go-rewrite/pkg/licensing"
|
|
|
|
type ConversionStore = pkglicensing.ConversionStore
|
|
type StoredConversionEvent = pkglicensing.StoredConversionEvent
|
|
type FunnelSummary = pkglicensing.FunnelSummary
|
|
|
|
func NewConversionStore(dbPath string) (*ConversionStore, error) {
|
|
return pkglicensing.NewConversionStore(dbPath)
|
|
}
|