jetp 0.1.1

automation platform
// Jetporch
// Copyright (C) 2023 - Michael DeHaan <michael@michaeldehaan.net> + contributors
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// at your option) any later version.
// 
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
// GNU General Public License for more details.
// 
// You should have received a copy of the GNU General Public License
// long with this program.  If not, see <http://www.gnu.org/licenses/>.

pub mod request;
pub mod response;
pub mod common;
pub mod logic;
pub mod files;
pub mod fields;
pub mod cmd_library;
pub mod checksum;

pub use crate::connection::command::cmd_info;
pub use crate::tasks::common::{IsTask,IsAction,EvaluatedTask};
pub use crate::tasks::logic::{PreLogicInput,PreLogicEvaluated,PostLogicInput,PostLogicEvaluated};
pub use crate::handle::handle::{TaskHandle,CheckRc};
pub use crate::tasks::response::{TaskResponse,TaskStatus};
pub use crate::tasks::request::{TaskRequestType,TaskRequest};
pub use crate::tasks::files::{FileAttributesInput,FileAttributesEvaluated};
pub use crate::tasks::fields::Field;
pub use crate::playbooks::templar::TemplateMode;