Getting portfolio stuff working

This commit is contained in:
Caleb Gardner
2024-07-13 07:04:44 -05:00
parent 15dcc2928a
commit 4eb69bb343
3 changed files with 30 additions and 6 deletions
+19
View File
@@ -0,0 +1,19 @@
package blog
import (
"go.mongodb.org/mongo-driver/mongo"
)
type project struct {
Title string `bson:"_id"`
Repository string `bson:"respository"`
Description string `bson:"description"`
Languages []struct {
Language string `bson:"language"`
Dates string `bson:"dates"`
} `bson:"language"`
}
func portfolio(client *mongo.Client) {
//TODO
}