tinc_build/codegen/cel/
types.rs

1use crate::types::ProtoType;
2
3#[derive(Debug, Clone, PartialEq)]
4pub(crate) enum CelType {
5    CelValue,
6    Proto(ProtoType),
7}