pendzl_contracts 1.0.2

Reusable implementations of contracts and traits for interaction with them.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
// Copyright (c) 2024 C Forge. All Rights Reserved.
// SPDX-License-Identifier: MIT
include!("ownable_error.rs");
include!("ownable_events.rs");
include!("ownable_trait.rs");

/// implementation of the traits
#[cfg(feature = "ownable_impl")]
mod implementation;

/// implementation of the traits
#[cfg(feature = "ownable_impl")]
pub use implementation::*;