Skip to content

Commit

Permalink
refactor: 접근제어자 추가 (TeamNADA#342)
Browse files Browse the repository at this point in the history
  • Loading branch information
hyun99999 committed Apr 16, 2023
1 parent 271e72b commit db9e986
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ extension HomeViewController {

// MARK: - Network
extension HomeViewController {
func updateUserInfoFetchWithAPI(completion: @escaping (Bool) -> Void) {
private func updateUserInfoFetchWithAPI(completion: @escaping (Bool) -> Void) {
UpdateAPI.shared.updateUserInfoFetch { response in
switch response {
case .success(let data):
Expand All @@ -228,7 +228,7 @@ extension HomeViewController {
}
}
}
func updateNoteFetchWithAPI(completion: @escaping (UpdateNote) -> Void) {
private func updateNoteFetchWithAPI(completion: @escaping (UpdateNote) -> Void) {
UpdateAPI.shared.updateNoteFetch { response in
switch response {
case .success(let data):
Expand Down

0 comments on commit db9e986

Please sign in to comment.