#[module]
Marks the plugin entrypoint.
use nvim_oxi as oxi; #[oxi::module] fn foo() -> oxi::Result<()> { Ok(()) }
the compiled library can then be loaded from Neovim with require("foo").
require("foo")