mirror of
https://github.com/balzack/databag.git
synced 2025-02-12 11:39:17 +00:00
18 lines
300 B
Go
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
|
||
|
}
|
||
|
|