sktlib 0.1.3

the library for the template creator for kubernetes resources
Documentation
1
2
3
4
5
6
use std::fmt::Display;

pub fn build_string<T: Display>(arg: T) -> String {
    format!("{}", arg)
}