golang에서 실행할 때, 로컬 파일을 참조하도록 설정
go mod edit -replace example.com/greetings=../greetings
- 이렇게 하면, example.com/greetings에 대해서는 로컬의 파일을 참조하게 됨
- 이경우 example.com/greetings에 대해서만 동작하고, example.com/greetings/test 처럼 하위 프로젝트에 대해서는 동작 안함
- 단 greetings에 go.mod가 있다면, 아래의 폴더들은 하위 프로젝트로 잡힘
- https://go.dev/doc/tutorial/call-module-code