oak_zig/language/
mod.rs

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