alpha
Login
or
Join now
willdot.net
/
distributed-pds
forked from
willdot.net/cocoon
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
A fork of the Cocoon PDS but being made more distributed.
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
Overview
Issues
Pulls
Pipelines
print errors properly
author
Hailey
date
1 year ago
(Mar 29, 2025, 12:11 AM -0700)
commit
4e999a24
4e999a24eeb7a54090ed5b83eecbd9b0ab84bb76
parent
90a22cd3
90a22cd304044f2e704f1dabc0124c67d9c96a81
+1
-2
2 changed files
Expand all
Collapse all
Unified
Split
cmd
cocoon
main.go
server
handle_repo_create_record.go
+1
cmd/cocoon/main.go
Reviewed
···
84
84
Relays: cmd.StringSlice("relays"),
85
85
})
86
86
if err != nil {
87
87
+
fmt.Printf("error creating cocoon: %v", err)
87
88
return err
88
89
}
89
90
-2
server/handle_repo_create_record.go
Reviewed
···
56
56
}
57
57
58
58
return e.JSON(200, results[0])
59
59
-
60
60
-
return nil
61
59
}