Browse Source

feat: IPv6 support. (#301)

pull/254/merge
zlenner 9 months ago
committed by GitHub
parent
commit
f7256d2dfd
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 1
      src/cmd/rest.go

1
src/cmd/rest.go

@ -40,6 +40,7 @@ func restServer(_ *cobra.Command, _ []string) {
app := fiber.New(fiber.Config{
Views: engine,
BodyLimit: int(config.WhatsappSettingMaxVideoSize),
Network: "tcp",
})
app.Static("/statics", "./statics")

Loading…
Cancel
Save