mirror of
https://github.com/astaxie/beego.git
synced 2024-11-05 14:50:58 +00:00
10 lines
96 B
Go
10 lines
96 B
Go
package goyaml2
|
|
|
|
import (
|
|
"io"
|
|
)
|
|
|
|
func Write(w io.Writer, v interface{}) error {
|
|
return nil
|
|
}
|