11 lines
188 B
Go
11 lines
188 B
Go
|
package macros
|
||
|
|
||
|
import (
|
||
|
"github.com/mediocregopher/ginger/macros/pkgctx"
|
||
|
"github.com/mediocregopher/ginger/types"
|
||
|
)
|
||
|
|
||
|
func Package(p *pkgctx.PkgCtx, el types.Elem) string {
|
||
|
return ""
|
||
|
}
|