Skip to content

Commit

Permalink
add: alert - 당신의 잘못에 대한 경고
Browse files Browse the repository at this point in the history
  • Loading branch information
archmagece committed Aug 27, 2024
1 parent efc7cd9 commit 081d940
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
4 changes: 2 additions & 2 deletions routers/proxy_router.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ func ProxyRouter(r *gin.Engine) {
globalConfig.ReadConfig()

mavenProxyConfig := configs.MavenProxyConfig{}
mavenProxyConfig.ReadConfig()
//mavenProxyConfig.ReadConfig()

if mavenProxyConfig.ConfigExists() {
mavenGroup := r.Group("/proxy/maven")
Expand All @@ -27,7 +27,7 @@ func ProxyRouter(r *gin.Engine) {
}

aptProxyConfig := configs.AptProxyConfig{}
aptProxyConfig.ReadConfig()
//aptProxyConfig.ReadConfig()

if aptProxyConfig.ConfigExists() {
aptGroup := r.Group("/proxy/apt")
Expand Down
4 changes: 3 additions & 1 deletion templates/alert.html
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,9 @@
<h1>경고</h1>

<p>
설정파일을 설정하지 않고 프로그램을 사용하려는 것은 잘못된 행위입니다. 설정파일을 설정하고 오시기 바랍니다.
설정파일을 설정하지 않고 프로그램을 사용하려는 것은 잘못된 행위입니다.
그러시면 안됩니다.
설정파일을 설정하고 오시기 바랍니다.
</p>

<p>
Expand Down

0 comments on commit 081d940

Please sign in to comment.