Are channel and channels reserved words in Phoenix?

I searched the docs but couldn’t find anything on this. I have a context and a model that I would like to call Channels and Channel respectively (nothing to do with Phoenix channels). Considering that Phoenix ships with its own channels functionality and might have the word all over its innards, should I avoid using these names?

1 Like

There are no reserved words, so as long as you use your own namespaces, ie not define a Phoenix.Channel module, you are all set.

2 Likes