- Update to go 1.25 - Update encode and decode structs - Merge agent to single struct - Current only TCP Working
8 lines
112 B
Go
8 lines
112 B
Go
package core
|
|
|
|
import "net"
|
|
|
|
func (a *PlayitAgent) AcceptUdp() (*net.Conn, error) {
|
|
return nil, net.ErrClosed
|
|
}
|