Skip to content

Instantly share code, notes, and snippets.

@eminetto
Created June 4, 2019 02:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save eminetto/ccdd2d4dcdb647b3c84c437d7789c1c8 to your computer and use it in GitHub Desktop.
Save eminetto/ccdd2d4dcdb647b3c84c437d7789c1c8 to your computer and use it in GitHub Desktop.
package ecommerce
type order struct {
pid int64
cid int64
}
func CreateOrder(pid int64, cid int64) order {
return order{
pid: pid, cid: cid,
}
}
func (o order) Submit() (int64, error) {
// do some logic
return int64(3252345234), nil
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment