apex_openapi/lib.rs
1//! Placeholder crate for the apex-labs ecosystem
2//!
3//! This crate is currently a placeholder and will be developed as part of
4//! the apex-labs project. Check the repository for updates.
5
6#![forbid(unsafe_code)]
7#![warn(missing_docs)]
8
9/// Placeholder function
10pub fn placeholder() {
11 println!("This is a placeholder for {}", env!("CARGO_PKG_NAME"));
12}