feat: go-chi and first routes setup

This commit is contained in:
Florian Sylvain
2023-08-06 05:00:15 +02:00
parent 5b4b5a8622
commit 195c247235
9 changed files with 189 additions and 38 deletions
+1
View File
@@ -6,5 +6,6 @@ import (
type IArticleRepository interface {
Get(id int) Article
GetAll() []Article
Create(article Article) Article
}