mirror of
https://github.com/tailscale/tailscale.git
synced 2025-04-26 10:40:58 +00:00
13 lines
239 B
Go
13 lines
239 B
Go
![]() |
// Copyright (c) Tailscale Inc & AUTHORS
|
||
|
// SPDX-License-Identifier: BSD-3-Clause
|
||
|
|
||
|
// Package dissector contains the Lua dissector for Tailscale packets.
|
||
|
package dissector
|
||
|
|
||
|
import (
|
||
|
_ "embed"
|
||
|
)
|
||
|
|
||
|
//go:embed ts-dissector.lua
|
||
|
var Lua string
|