mirror of
https://github.com/bitcoinresearchkit/brk.git
synced 2026-06-30 06:02:10 -07:00
13 lines
288 B
Rust
13 lines
288 B
Rust
//! Language-specific syntax backends.
|
|
//!
|
|
//! This module contains implementations of the `LanguageSyntax` trait
|
|
//! for each supported target language.
|
|
|
|
mod javascript;
|
|
mod python;
|
|
mod rust;
|
|
|
|
pub use javascript::JavaScriptSyntax;
|
|
pub use python::PythonSyntax;
|
|
pub use rust::RustSyntax;
|