[go] 파일 공유 확인
package main

import (
	"log"
	"net/http"
)

func main() {
	// 파일 서버 설정
	fs := http.FileServer(http.Dir("static"))
	http.Handle("/", fs)

	// 서버 시작
	log.Println("파일 서버 시작 - http://localhost:8080/")
	http.ListenAndServe(":8080", nil)
}

위의 코드에서 http.FileServer 함수를 사용하여 파일 서버를 설정하고, http.ListenAndServe 함수를 사용하여 서버를 시작합니다. http.Dir 함수는 파일이 저장된 디렉토리를 나타냅니다.

이제 파일이 저장된 디렉토리에 웹 서버를 실행하고, 해당 URL을 다른 사용자에게 전달하여 파일을 공유할 수 있습니다.

파일 공유에 대한 더 자세한 정보는 공식 Go 문서를 참조하십시오.