mirror of
https://github.com/mappu/miqt.git
synced 2025-01-05 15:18:38 +00:00
10 lines
118 B
Go
10 lines
118 B
Go
|
package main
|
||
|
|
||
|
import (
|
||
|
"errors"
|
||
|
)
|
||
|
|
||
|
func emitGo(src *parsedHeader) (string, error) {
|
||
|
return "", errors.New("TODO")
|
||
|
}
|