oak_wit/language/
mod.rs

1use crate::kind::WitSyntaxKind;
2use oak_core::Language;
3
4pub struct WitLanguage {}
5
6impl Language for WitLanguage {
7    type SyntaxKind = WitSyntaxKind;
8    type TypedRoot = ();
9}