Getting portfolio stuff working
This commit is contained in:
@@ -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
|
||||
}
|
||||
Reference in New Issue
Block a user