InternalServer to Server refactor
All checks were successful
continuous-integration/drone Build is passing

This commit is contained in:
ycc
2023-11-08 22:01:44 +01:00
parent 04a390d558
commit c203431ede
5 changed files with 41 additions and 41 deletions

View File

@ -5,7 +5,7 @@ import (
"github.com/google/uuid"
)
func ProcessForOutput(usermessage *meowlib.UserMessage, peer *Peer, servers *InternalServerList, trackingLookupKey string) ([]byte, error) {
func ProcessForOutput(usermessage *meowlib.UserMessage, peer *Peer, servers *ServerList, trackingLookupKey string) ([]byte, error) {
lastIdx := len(servers.Servers) - 1
// LAST SERVER : Message delivery as usual
srv := &servers.Servers[lastIdx]