Skip to content

Instantly share code, notes, and snippets.

View kfelter's full-sized avatar
🎧
Flow

Kyle Felter kfelter

🎧
Flow
View GitHub Profile
@kfelter
kfelter / main.go
Created September 5, 2021 05:03 — forked from cryptix/main.go
using go/ast to find specific function calls and the values of a parameter
package main
import (
"fmt"
"go/ast"
"go/parser"
"go/token"
"log"
)