# Conclusion
###### tags: `module-tutorial` `foundry-vtt`
Congratulations! You've created a module which can CRUD ToDos for each individual user. This is as far as this tutorial will take you. If you'd like to see/download the entire result of this tutorial's code in one place, you can do so in [this repository](https://github.com/ElfFriend-DnD/foundryvtt-module-tutorial).
You now have interacted with a lot of the major facets of the Foundry VTT public API which form the backbone of any Module:
1. Hooks
2. Flags
3. FormApplication
4. Dialog
5. Settings
6. Handlebars
7. CSS
8. Localization
As a bonus you also interacted with another Module's exposed API (Development Mode).
## What's Next?
If you'd like a few tasks to flex your new knowledge, try enhancing the `todo-list` module you've just created with the following features:
- Allow the GM to see and edit player ToDos
- Allow the Players to see but not edit other player ToDos (but not the GM's)
- Add a `description` field to the `ToDo` object which is a long-form text input; adjust the design of the ToDoListConfig accordingly.
Alternatively, take the knowledge you just gained and create something of your own!
Consider joining The League of Extraordinary Foundry VTT Developers [discord server](https://discord.gg/Hgv6W7xBes) and sharing what you've made or want to make. The League is a friendly community dedicated to improving the developer experience while working with Foundry VTT.
## Some Credits
This tutorial was written by Andrew Krigline, aka Calego (or ElfFriend-DnD) who was the First-among-equals of the Ring Masters of the League at the time of its writing.
Members of the League, most notably Corporat, provided feedback and testing that helped make it the best it could be.
If this tutorial helped you make something or understand something better, I want to hear about it! You can find me hanging out in the League's Discord server, a screenshot of your own complete To-Do List module would make my day.
Lastly, consider supporting me through [Ko-Fi](https://ko-fi.com/elffriend) or [Patreon](https://www.patreon.com/ElfFriend_DnD). This kind of tutorial doesn't write itself and I expect it will need some updating in the future. Your support will help me spend that time here instead of elsewhere.
## Changelog
### 2021-12-22
#### Changed
- Changed introduction language to indicate this tutorial is valid for Foundry VTT v9.
- Changed some API links to link to the Wiki API pages.