concision_transformer/codec/decoder/
layer.rs

1/*
2    Appellation: layer <module>
3    Contrib: FL03 <jo3mccain@icloud.com>
4*/
5
6#[derive(Default)]
7pub struct DecoderLayer {}
8
9impl DecoderLayer {
10    pub fn new() -> Self {
11        Self {}
12    }
13}