Skip to content

Commit

Permalink
rename: main api, network api - application 이름 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
inferior3x committed Dec 16, 2024
1 parent a36b391 commit adeee3c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@
import org.springframework.boot.autoconfigure.SpringBootApplication;

@SpringBootApplication(scanBasePackages = {"com.whoz_in"})
public class WhozInApiApplication {
public class MainApiApplication {

public static void main(String[] args) {
SpringApplication.run(WhozInApiApplication.class, args);
SpringApplication.run(MainApiApplication.class, args);
}

}
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@
import org.springframework.boot.autoconfigure.SpringBootApplication;

@SpringBootApplication(scanBasePackages = {"com.whoz_in"})
public class WhozInNetworkLogApplication {
public class NetworkLogApplication {

public static void main(String[] args) {
SpringApplication.run(WhozInNetworkLogApplication.class, args);
SpringApplication.run(NetworkLogApplication.class, args);
}

}

0 comments on commit adeee3c

Please sign in to comment.