1pub const INTERNAL_NAMESPACE: &str = "__soma_internal"; 2 3pub fn is_internal_call(id: &str) -> bool { 4 id.split_once("::") 5 .is_some_and(|(namespace, _)| namespace == INTERNAL_NAMESPACE) 6}