13 lines
140 B
Go
13 lines
140 B
Go
|
package main
|
||
|
|
||
|
import (
|
||
|
"fmt"
|
||
|
|
||
|
"git.kirsle.net/apps/doodle/lib/ui/eg/layout"
|
||
|
)
|
||
|
|
||
|
func main() {
|
||
|
fmt.Println("Hello world")
|
||
|
layout.main()
|
||
|
}
|