Skip to content

Instantly share code, notes, and snippets.

@efontan
Created July 27, 2020 21:44
Show Gist options
  • Save efontan/f62d801506e8526f2f6ebe679c31245a to your computer and use it in GitHub Desktop.
Save efontan/f62d801506e8526f2f6ebe679c31245a to your computer and use it in GitHub Desktop.
My VSCode Go snippets
{
"Service with constructor": {
"prefix": "service",
"body": [
"type $1 struct {",
"}\n",
"func New${1/(.*)/${1:/capitalize}/}() (*$1, error) {",
"\treturn &$1{}, nil",
"}",
],
"description": "Create a new service with constructor"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment