반응형
Programming/Go
-
Go :: Go 로 REST API 작성해보기 / go rest api exampleProgramming/Go 2023. 1. 11. 15:29
오늘은 Go 언어를 공부하면서 REST API 예제 코드를 작성해 보았습니다. 전체 코드는 아래 링크를 참고해주세요 https://github.com/kumakuma34/GoRestExample GitHub - kumakuma34/GoRestExample: Go Rest API Example Go Rest API Example. Contribute to kumakuma34/GoRestExample development by creating an account on GitHub. github.com - Router 라이브러리를 이용해서 서버를 띄웠습니다. - 별도의 DB를 사용하지 않고 메모리를 이용해 테스트를 진행하였습니다. 📌 Go module 등록하기 → 작업하고 있는 디렉토리 안에서 진행 go mo..