Clarify licensing for contributors

This commit is contained in:
Nathan Fisher 2022-12-25 22:30:46 -05:00
parent cf99f2005a
commit 815a98be4d

View File

@ -1,9 +1,15 @@
Contents Contents
======== ========
* [Licensing](#licensing)
* [The **Cmd** trait](#the-cmd-trait) * [The **Cmd** trait](#the-cmd-trait)
* [A simple example applet](#a-simple-example-applet) * [A simple example applet](#a-simple-example-applet)
* [Incorporating a new applet](#incorporating-a-new-applet) * [Incorporating a new applet](#incorporating-a-new-applet)
## Licensing
This code is BeerWare. It is essentially in the public domain. If you wish to
contribute, your name may be added to the credits, but by contributing you agree
to basically place your contributions into the public domain.
## The Cmd trait ## The Cmd trait
The `Cmd` trait is defined in `src/cmd/mod.rs`. All applets should live in their The `Cmd` trait is defined in `src/cmd/mod.rs`. All applets should live in their
own submodule under `crate::cmd` and include a struct with the name of the command, own submodule under `crate::cmd` and include a struct with the name of the command,