diff options
author | href <href@random.sh> | 2021-01-11 15:53:02 +0100 |
---|---|---|
committer | href <href@random.sh> | 2021-01-11 15:53:02 +0100 |
commit | 0f3f0e035b43eabd3f739c41964446962cf54208 (patch) | |
tree | 9279c54e100c92375c9d980e2031e0a153245025 /lib/irc/data.ex | |
parent | Some fixes (diff) |
Cont. wipmaster
Diffstat (limited to 'lib/irc/data.ex')
-rw-r--r-- | lib/irc/data.ex | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/lib/irc/data.ex b/lib/irc/data.ex new file mode 100644 index 0000000..4d48906 --- /dev/null +++ b/lib/irc/data.ex @@ -0,0 +1,10 @@ +defmodule Irc.Data do + @moduledoc """ + The `Irc` library contains a polymorphic data system. + + * Universal structures: `Irc.User`, `Irc.Mask`, `Irc.Line`; + * Data protocols: `Irc.Addressable`, `Irc.Context` + + Data structures and protocol requires the owner/creator of theses structures to attach its identity (pid and module). + """ +end |