Nexus/pkg/nex/cruda/conn.go

14 lines
190 B
Go
Raw Normal View History

2024-10-20 11:04:41 +00:00
package cruda
import "git.solsynth.dev/hypernet/nexus/pkg/nex"
type CudaConn struct {
Conn *nex.Conn
}
func NewCudaConn(conn *nex.Conn) *CudaConn {
return &CudaConn{
Conn: conn,
}
}