16 lines
182 B
Go
16 lines
182 B
Go
|
package storage
|
||
|
|
||
|
import "context"
|
||
|
|
||
|
type StorageCart interface {
|
||
|
|
||
|
}
|
||
|
|
||
|
func (s *storage) GetCartItem(ctx context.Context) {
|
||
|
|
||
|
}
|
||
|
|
||
|
func (s *storage) GetCartItems(ctx context.Context) {
|
||
|
|
||
|
}
|