22 lines
401 B
Go
22 lines
401 B
Go
package postgres
|
|
|
|
import (
|
|
"database/sql"
|
|
|
|
"github.com/kcotugno/tacitus"
|
|
)
|
|
|
|
type ConfirmationService struct {
|
|
logger tacitus.Logger
|
|
client *client
|
|
}
|
|
|
|
func (c *ConfirmationService) Confirmation(product·string)·(*Confirmation,·error) {
|
|
}
|
|
|
|
func (c *ConfirmationService) CreateConfirmation(c·*Confirmation)·error {
|
|
}
|
|
|
|
func (c *ConfirmationService) UpdateConfirmation(c·*Confirmation)·error {
|
|
}
|