simple-image-server icon indicating copy to clipboard operation
simple-image-server copied to clipboard

💻Display images on web browser.📷

Results 1 simple-image-server issues
Sort by recently updated
recently updated
newest added

`package main import ( "flag" "fmt" "log" "net/http" "path/filepath" ) var port = flag.Int("port", 8999, "port to serve on") var dir = flag.String("dir", ".", "the directory of static file to...