12 lines
156 B
Plaintext
12 lines
156 B
Plaintext
|
// +build OMIT
|
||
|
package main
|
||
|
|
||
|
import (
|
||
|
"log"
|
||
|
"net/http"
|
||
|
)
|
||
|
|
||
|
func main() {
|
||
|
log.Fatal(http.ListenAndServe(":8888", http.FileServer(http.Dir("ui/build"))))
|
||
|
}
|