apex-codegen 0.0.1

Placeholder - part of apex-rs ecosystem
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Placeholder crate for the apex-labs ecosystem
//! 
//! This crate is currently a placeholder and will be developed as part of
//! the apex-labs project. Check the repository for updates.

#![forbid(unsafe_code)]
#![warn(missing_docs)]

/// Placeholder function
pub fn placeholder() {
    println!("This is a placeholder for {}", env!("CARGO_PKG_NAME"));
}