From 74cf2b9845aeab09487f3cd85235f92d714833c6 Mon Sep 17 00:00:00 2001 From: Vincent Yang Date: Tue, 17 Sep 2024 19:34:32 -0400 Subject: [PATCH] fix: remove authkey --- compose.yaml | 1 - config.go | 5 ++--- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/compose.yaml b/compose.yaml index 94191b7..0991a06 100644 --- a/compose.yaml +++ b/compose.yaml @@ -8,5 +8,4 @@ services: - "1188:1188" # environment: # - TOKEN=helloworld - # - AUTHKEY=xxxxxxx:fx # - DL_SESSION=xxxxxx \ No newline at end of file diff --git a/config.go b/config.go index 1602660..beb0fac 100644 --- a/config.go +++ b/config.go @@ -1,8 +1,8 @@ /* * @Author: Vincent Yang * @Date: 2024-04-23 00:39:03 - * @LastEditors: Vincent Young - * @LastEditTime: 2024-09-16 12:02:15 + * @LastEditors: Vincent Yang + * @LastEditTime: 2024-09-17 19:34:32 * @FilePath: /DeepLX/config.go * @Telegram: https://t.me/missuo * @GitHub: https://github.com/missuo @@ -22,7 +22,6 @@ type Config struct { IP string Port int Token string - AuthKey string DlSession string Proxy string }