MCPcopy Create free account
hub / github.com/PaperDebugger/paperdebugger / Project

Struct Project

internal/models/project.go:27–36  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

25}
26
27type Project struct {
28 BaseModel `bson:",inline"`
29 UserID bson.ObjectID `bson:"user_id"`
30 ProjectID string `bson:"project_id"`
31 Name string `bson:"name"`
32 RootDocID string `bson:"root_doc_id"`
33 Docs []ProjectDoc `bson:"docs"`
34 Category ClassifyPaperResponse `bson:"category,omitempty"`
35 Instructions string `bson:"instructions"`
36}
37
38func (u Project) CollectionName() string {
39 return "projects"

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected