mirror of
https://github.com/astaxie/beego.git
synced 2024-11-05 16:40:55 +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
|
||
|
}
|