updated README.md and main.go

This commit is contained in:
Aaron Kidwell
2026-05-21 15:57:56 -04:00
parent f59d130ce0
commit a949d56202
3 changed files with 14 additions and 4 deletions
+11 -1
View File
@@ -47,10 +47,20 @@ Admin-tier commands may still require an elevated shell even if your account is
## Install ## Install
**Remote install** (requires a tagged release on GitHub, e.g. `v0.1.0`):
```bash
go install github.com/aaron-kidwell/goLoL@latest
```
The binary is placed in your `GOPATH/bin` (or `~/go/bin`). On Windows, ensure that directory is on your `PATH`.
**Clone and build:**
```bash ```bash
git clone https://github.com/aaron-kidwell/goLoL.git git clone https://github.com/aaron-kidwell/goLoL.git
cd goLoL cd goLoL
go mod download go build -ldflags="-s -w" -trimpath -o golol.exe .
``` ```
## Usage ## Usage
+1 -1
View File
@@ -1,4 +1,4 @@
module dev module github.com/aaron-kidwell/goLoL
go 1.26.2 go 1.26.2
+2 -2
View File
@@ -13,8 +13,8 @@ import (
"syscall" "syscall"
"unsafe" "unsafe"
"dev/internal/mitre" "github.com/aaron-kidwell/goLoL/internal/mitre"
"dev/internal/privileges" "github.com/aaron-kidwell/goLoL/internal/privileges"
) )
type lolbasCommand struct { type lolbasCommand struct {