Skip to content

Instantly share code, notes, and snippets.

@BK1031
Created July 15, 2024 19:20
Show Gist options
  • Save BK1031/b0e9456e34c92570c8aecf1db43ec139 to your computer and use it in GitHub Desktop.
Save BK1031/b0e9456e34c92570c8aecf1db43ec139 to your computer and use it in GitHub Desktop.
singlestore-go-bookstore create book service stub
package service
import "bookstore/model"
func CreateBook(book model.Book) (model.Book, error) {
return book, nil
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment