Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
Signed-off-by: spacewander <[email protected]>
  • Loading branch information
spacewander committed Nov 18, 2024
1 parent 0233a39 commit e5be4a9
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions api/pkg/filtermanager/api/phase.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,14 @@ type Phase int

const (
PhaseDecodeHeaders Phase = 0x01
PhaseDecodeData = 0x02
PhaseDecodeTrailers = 0x04
PhaseDecodeRequest = 0x08
PhaseEncodeHeaders = 0x10
PhaseEncodeData = 0x20
PhaseEncodeTrailers = 0x40
PhaseEncodeResponse = 0x80
PhaseOnLog = 0x100
PhaseDecodeData Phase = 0x02
PhaseDecodeTrailers Phase = 0x04
PhaseDecodeRequest Phase = 0x08
PhaseEncodeHeaders Phase = 0x10
PhaseEncodeData Phase = 0x20
PhaseEncodeTrailers Phase = 0x40
PhaseEncodeResponse Phase = 0x80
PhaseOnLog Phase = 0x100
)

var (
Expand Down

0 comments on commit e5be4a9

Please sign in to comment.