#![doc = include_str!("../README.md")]
#![allow(dead_code)]
#![allow(unused_imports)]
#![deny(missing_docs)]
pub use ghactions_core::logging::init_logger;
#[cfg(feature = "toolcache")]
pub use ghactions_core::toolcache::ToolCache;
pub use ghactions_core::ActionTrait;
pub use ghactions_core::ActionsError;
#[cfg(feature = "log")]
pub use ghactions_core::{errorf, group, groupend, setoutput};
pub use ghactions_derive::Actions;
pub mod prelude {
pub use ghactions_derive::Actions;
pub use ghactions_core::ActionTrait;
pub use ghactions_core::errors::ActionsError;
#[cfg(feature = "toolcache")]
pub use ghactions_core::toolcache::ToolCache;
#[cfg(feature = "log")]
pub use ghactions_core::{errorf, group, groupend, setoutput};
#[cfg(feature = "log")]
pub use log::{debug, error, info, trace, warn};
}