mirror of
https://github.com/mappu/miqt.git
synced 2025-01-03 14:18:37 +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")
|
|
}
|