feat: gitlab feature

This commit is contained in:
xmppftw xmppftw 2026-06-23 17:13:42 +02:00
commit d54ef5f265
3 changed files with 6 additions and 3 deletions

View file

@ -14,11 +14,12 @@
// along with this program. If not, see <https://www.gnu.org/licenses/>.
mod forgejo;
#[cfg(feature = "gitlab")]
mod gitlab;
mod types;
pub use crate::hooks::forgejo::ForgejoHook;
#[allow(deprecated)]
#[cfg(feature = "gitlab")]
pub use crate::hooks::gitlab::GitlabHook;
pub use crate::hooks::types::Hook;
pub use crate::hooks::types::{IssueAction, MergeRequestAction, WikiAction};