Echo Writes Code

state.rs

1
2
3
4
5
6
7
8
9
10
use crate::git::{ Git };

use tera::{ Tera };

pub(crate) struct Gitten {
	pub(crate) application_name: String,
	pub(crate) git: Git,
	pub(crate) tera: Tera,
}