Added gitignore
This commit is contained in:
9
vidow-backend/crates/vidow_api/Cargo.toml
Normal file
9
vidow-backend/crates/vidow_api/Cargo.toml
Normal file
@@ -0,0 +1,9 @@
|
||||
[package]
|
||||
name = "vidow_api"
|
||||
version = "0.1.0"
|
||||
edition = "2021"
|
||||
|
||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||
|
||||
[dependencies]
|
||||
vidow_core = {path = "../vidow_core"}
|
3
vidow-backend/crates/vidow_api/src/external_api.rs
Normal file
3
vidow-backend/crates/vidow_api/src/external_api.rs
Normal file
@@ -0,0 +1,3 @@
|
||||
pub struct ExternalApi;
|
||||
|
||||
impl ExternalApi {}
|
8
vidow-backend/crates/vidow_api/src/lib.rs
Normal file
8
vidow-backend/crates/vidow_api/src/lib.rs
Normal file
@@ -0,0 +1,8 @@
|
||||
pub mod external_api;
|
||||
|
||||
pub struct Api;
|
||||
|
||||
impl Api {
|
||||
pub async fn serve(config: vidow_core::config::AppConfig) {}
|
||||
}
|
||||
|
Reference in New Issue
Block a user