Files
lneto/.gitignore
T
Pat Whittingslow 813b7b5e57 Lay out device/stack interfaces - Netdev/Netlink (#92)
* good code today

* add netdev.Runner

* round off APIs more

* better interface method documentation

* improve DHCP netstack API

* add pico w netdev example

* remove temp file

* keep thinking about this. this is hard :/

* fix ci

* small fixer

* working dhcp

* fix rebase API mismatches

* begin adding espradio example

* keep working on espradio, icmp not working

* fix icmp by fixing dhcp
2026-06-17 14:18:08 -03:00

75 lines
922 B
Plaintext

# Go workspaces.
go.work
go.work.sum
# Test binary, built with `go test -c`
*.test
# Test coverage profiles.
profiles/
# Dependency directories after running `go mod vendor`
vendor/
# Wifi credentials
*.credentials
# Binaries for programs and plugins
*.elf
*.uf2
*.exe
*.exe~
*.dll
*.so
*.dylib
*.hex
*.wasm
# Profiling
*.pprof
# example binaries.
/tap
/httptap
/xcurl
/xnet
/httpclient
/httpserver
**/local*
/stack
**__debug_bin*
# `__debug_bin` Debug binary generated in VSCode when using the built-in debugger.
*bin
/gen-binary-bench
/bridge
# IDE
.vscode/
agents.md
*skill.md
# For local development and testing create `local` directories.
local
*.local
*local.md
# Output of the go coverage tool, specifically when used with LiteIDE
*.out
*.cov
# Log files and common data formats.
*.log
*.Log
*.LOG
*.csv
*.tsv
*.dat
*.json
*.xlsx
*.xls
*.zip
*.gz
*.tar
*.txt
# If running a python script.
*/__pycache__/*