personal-website/webfs/directory.go

8 lines
159 B
Go
Raw Permalink Normal View History

2023-11-24 19:12:13 +00:00
package webfs
import "go.mongodb.org/mongo-driver/bson/primitive"
type Directory struct {
Children []primitive.ObjectID `json:"children" bson:"children"`
}