6 lines
81 B
Go
6 lines
81 B
Go
|
package models
|
||
|
|
||
|
func ProductExists(id int64) (bool, error) {
|
||
|
return true, nil
|
||
|
}
|