お世話になります。
Go
1 2func main() { 3 (*database.GetDBM()).ConnectDB() 4 defer (*database.GetDBM()).CloseDB() 5 6 api := di.InjectAPIServer() 7 http.HandleFunc("/", api.GetMemos) 8 http.HandleFunc("/post", api.PostMemo) 9 http.HandleFunc("/post/memo_tags", api.PostMemoAndTags) 10 http.HandleFunc("/search/tags_memos", api.SearchTagsAndMemos) 11 http.ListenAndServe(":8080", nil) 12} 13 14
この実装例で、なぜ (*database.GetDBM())
をカッコで囲んでいるのでしょうか?
ご回答よろしくお願いいたします。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2019/12/05 09:46
2019/12/05 09:46
2019/12/05 09:50
2019/12/06 03:57