mirror of
https://github.com/mickael-kerjean/filestash
synced 2025-12-20 07:13:33 +01:00
15 lines
261 B
Go
15 lines
261 B
Go
// Copyright © 2017 VMware, Inc. All Rights Reserved.
|
|
// SPDX-License-Identifier: BSD-2-Clause
|
|
//
|
|
package xdr
|
|
|
|
import (
|
|
"io"
|
|
|
|
xdr "github.com/rasky/go-xdr/xdr2"
|
|
)
|
|
|
|
func Write(w io.Writer, val interface{}) error {
|
|
_, err := xdr.Marshal(w, val)
|
|
return err
|
|
}
|