Compare commits

..

4 commits

Author SHA1 Message Date
083ad3bd50
added missing headers 2024-06-10 10:27:52 +01:00
791a46d0db
add default 2024-06-10 10:21:10 +01:00
0d059c5933
feat: accept or reject follow requests
Add support for accepting and rejecting follow requests.
2024-06-10 10:21:09 +01:00
d21f1fbf6a
chore: bump golang.org/x/net from 0.21.0 to 0.26.0 2024-06-10 10:17:02 +01:00
3 changed files with 7 additions and 3 deletions

2
go.mod
View file

@ -6,4 +6,4 @@ module codeflow.dananglin.me.uk/apollo/enbas
go 1.22.0
require golang.org/x/net v0.21.0
require golang.org/x/net v0.26.0

4
go.sum
View file

@ -1,2 +1,2 @@
golang.org/x/net v0.21.0 h1:AQyQV4dYCvJ7vGmJyKki9+PBdyvhkSd8EIx/qb0AYv4=
golang.org/x/net v0.21.0/go.mod h1:bIjVDfnllIU7BJ2DNgfnXvpSvtn8VRwhlsaeUTyUS44=
golang.org/x/net v0.26.0 h1:soB7SVo0PWrY4vPW/+ay0jKDNScG2X9wFeYlXIvJsOQ=
golang.org/x/net v0.26.0/go.mod h1:5YKkiSynbBIh3p6iOc/vibscux0x38BZDkn8sCUPxHE=

View file

@ -1,3 +1,7 @@
// SPDX-FileCopyrightText: 2024 Dan Anglin <d.n.i.anglin@gmail.com>
//
// SPDX-License-Identifier: GPL-3.0-or-later
package executor
import (