feat: add basic templates

Signed-off-by: kjuulh <contact@kjuulh.io>
This commit is contained in:
2024-05-20 20:45:26 +02:00
parent fe48259d06
commit f04b0a2e54
14 changed files with 357 additions and 4 deletions

View File

@@ -1,3 +1,12 @@
pub mod common;
mod can_run_for_env;
use crate::common::run_test;
#[tokio::test]
async fn raw_files() -> anyhow::Result<()> {
run_test("raw_files").await?;
Ok(())
}