https://github.com/Joker666/AsyncGoDemo
A demo app that shows how async/await can be implemented and used in Golang
https://github.com/Joker666/AsyncGoDemo
Last synced: 8 days ago
JSON representation
A demo app that shows how async/await can be implemented and used in Golang
- Host: GitHub
- URL: https://github.com/Joker666/AsyncGoDemo
- Owner: Joker666
- Created: 2020-11-27T22:16:34.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2024-03-04T06:13:14.000Z (about 1 year ago)
- Last Synced: 2025-03-31T22:41:31.426Z (about 1 month ago)
- Language: Go
- Size: 4.88 KB
- Stars: 24
- Watchers: 1
- Forks: 8
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-go - AsyncGoDemo - async/await demo (Tutorials)
README

## A demo application with async/await in Golang
async/await is an extremely popular feature of modern languages like C#, Python, Javascript.
It simplifies the asynchronous method execution structure and, it reads like synchronous code.
So much easier to follow for developers.## Contribution
Want to contribute? Great!To fix a bug or enhance an existing code, follow these steps:
- Fork the repo
- Create a new branch (`git checkout -b improve-feature`)
- Make the appropriate changes in the files
- Add changes to reflect the changes made
- Commit your changes (`git commit -am 'Improve feature'`)
- Push to the branch (`git push origin improve-feature`)
- Create a Pull Request## License
MIT © [MD Ahad Hasan](https://github.com/joker666)