[x] Project Init
[x] 최소버전 + 라이브러리 설치
네이버 맵 pod 오류 해결
[x] 아키텍처 폴더 구조화
[x] Bundle APIKey
[x] 폰트 + 컬러 + Literal
[x] Default Extension 구현
[x] CLLocation 구현
[x] CLLocation → 내 위치 MapView에 띄우기
[x] NetworkManager 구현
extension DefaultLocationManager: CLLocationManagerDelegate {
    func locationManager(_ manager: CLLocationManager, didUpdateLocations locations: [CLLocation]) {
        if let coordinate = locations.last?.coordinate {
            locationCoordinate.accept(coordinate)
            print("==", locationCoordinate.values)
            print("== \\(#function)", coordinate)
        }
        
        locationUpdateSubject.onNext(())
        stop()
    }