sync
This commit is contained in:
parent
c3f365e1f6
commit
196c3498ef
3 changed files with 18 additions and 0 deletions
11
assets/template.html
Normal file
11
assets/template.html
Normal file
|
|
@ -0,0 +1,11 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
|
<title>Document</title>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
6
src/builder.rs
Normal file
6
src/builder.rs
Normal file
|
|
@ -0,0 +1,6 @@
|
||||||
|
use crate::assets::Assets;
|
||||||
|
|
||||||
|
pub fn build_template(Assets: Assets) -> Assets {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
|
@ -1,4 +1,5 @@
|
||||||
mod logger;
|
mod logger;
|
||||||
|
mod builder;
|
||||||
use crate::logger::logger as log;
|
use crate::logger::logger as log;
|
||||||
mod debug;
|
mod debug;
|
||||||
mod assets;
|
mod assets;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue