1use crate::config::Package; 2 3pub(super) fn create(package: &Package) -> String { 4 format!("# {}", package.name) 5}