mirror of
https://github.com/astaxie/beego.git
synced 2024-11-04 21:50:54 +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
|
|
}
|