databag/net/server/internal/sturn/attribute.go
2023-04-07 12:30:05 -07:00

18 lines
300 B
Go

package sturn
import (
// "errors"
// "strings"
// "strconv"
// "fmt"
)
func readAttribute(buf []byte, pos int, length int) (error, *SturnAttribute, int) {
return nil, nil, 0
}
func writeAttribute(attribute *SturnAttribute, buf []byte, pos int, length int) (error, int) {
return nil, 0
}