fkl-parser 0.4.0

Feakin is a architecture design and visual collaboration tool. This is the parser for Feakin.
Documentation
1
2
3
4
5
6
7
8
9
10
use serde::Deserialize;
use serde::Serialize;

use crate::mir::flow::step::Step;

#[derive(Debug, Clone, Serialize, Deserialize, PartialEq, Eq, Default)]
pub struct Flow {
  pub inline_doc: String,
  pub steps: Vec<Step>,
}