Skip to content

Instantly share code, notes, and snippets.

View jmhungdev's full-sized avatar
🐢
this is a turtle emoji

Jimmy Hung jmhungdev

🐢
this is a turtle emoji
  • CDK Global
  • Austin, TX
  • 03:25 (UTC -12:00)
  • X @jmhungdev
View GitHub Profile
go mod edit -module {NEW_MODULE_NAME}
-- rename all imported module
find . -type f -name '*.go' \
-exec sed -i -e 's,{OLD_MODULE},{NEW_MODULE},g' {} \;