solana_feature_gate_program/
lib.rs

1//! Feature Gate program
2
3#![deny(missing_docs)]
4#![cfg_attr(not(test), forbid(unsafe_code))]
5
6#[cfg(all(target_os = "solana", feature = "bpf-entrypoint"))]
7mod entrypoint;
8pub mod error;
9pub mod instruction;
10pub mod processor;
11
12solana_program::declare_id!("Feature111111111111111111111111111111111111");