databag/net/server/internal/sturn/attribute.go

18 lines
300 B
Go
Raw Normal View History

2023-04-07 19:30:05 +00:00
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
}