Skip to content

Latest commit

 

History

History
21 lines (12 loc) · 517 Bytes

File metadata and controls

21 lines (12 loc) · 517 Bytes

File uploading

Upload files to an application or file server using the Go programming language.

Prerequisites

  • Valid Golang installation

Getting started

Start the application.

go run main.go

Go to localhost:8080/upload and you will see a form to upload a file. After selecting a file and clicking upload the file should be created in your local filesystem.

Implementation