added crates to public project, made api structure

This commit is contained in:
2024-09-22 22:38:35 -04:00
parent 3afff00b29
commit cf199ab48a
12 changed files with 2327 additions and 2 deletions

View File

@@ -0,0 +1,2 @@
pub struct AuthorsDatasource;
impl AuthorsDatasource {}

View File

@@ -0,0 +1,2 @@
pub struct CommentsDatasource;
impl CommentsDatasource {}

View File

@@ -0,0 +1,3 @@
pub mod authors;
pub mod comments;
pub mod posts;

View File

@@ -0,0 +1,2 @@
pub struct PostsDatasource;
impl PostsDatasource {}