Created
July 15, 2024 19:20
-
-
Save BK1031/b0e9456e34c92570c8aecf1db43ec139 to your computer and use it in GitHub Desktop.
singlestore-go-bookstore create book service stub
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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