# open-gateway **Repository Path**: IceFoxs/open-gateway ## Basic Information - **Project Name**: open-gateway - **Description**: No description available - **Primary Language**: Unknown - **License**: Apache-2.0 - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2024-09-26 - **Last Updated**: 2024-10-12 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # open-gateway #### 运行 ```shell make run ``` #### 构建 ```shell make build ``` ### 压缩 ```shell #安装upx brew install upx #压缩 upx -o output_file input_file #macos upx --force-macos -o output_file input_file 解压 upx -d -o example_uncompressed.exe example_compressed.exe ``` ### windows编译 ```shell go mod tidy go build -o dist/opengateway.exe ./cmd/opengateway/ ```