Skip to content

Commit

Permalink
mark ipc server deprecated
Browse files Browse the repository at this point in the history
  • Loading branch information
juzeon committed Feb 27, 2024
1 parent b981f79 commit 90c033a
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,11 @@ var assets embed.FS
func main() {
// Create an instance of the app structure
settings := NewSettings()
ipcServer := NewIPCServer(settings)
go ipcServer.Serve()

// Mark ipc server deprecated since we are using built-in CAPTCHA resolver now
//ipcServer := NewIPCServer(settings)
//go ipcServer.Serve()

app := NewApp(settings)

// Create application with options
Expand Down

0 comments on commit 90c033a

Please sign in to comment.