Compare commits

..

2 commits

Author SHA1 Message Date
251042fe8e
add default 2024-06-09 23:26:43 +01:00
923ad3c26b
feat: accept or reject follow requests
Add support for accepting and rejecting follow requests.
2024-06-09 20:50:00 +01:00
3 changed files with 3 additions and 7 deletions

2
go.mod
View file

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

4
go.sum
View file

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

View file

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