Skip to content

Commit 699d1bd

Browse files
committed
fix: remove build tags
1 parent 326ce0e commit 699d1bd

File tree

4 files changed

+0
-12
lines changed

4 files changed

+0
-12
lines changed

README.md

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ Simple HTTP adapter for AWS Lambda
1717
## Usage
1818
### Creating the Adapter
1919
#### net/http
20-
Build tag: `http_adapter_vanilla`
2120
```golang
2221
package main
2322

@@ -38,7 +37,6 @@ func main() {
3837
```
3938

4039
#### Echo
41-
Build tag: `http_adapter_echo`
4240
```golang
4341
package main
4442

@@ -59,7 +57,6 @@ func main() {
5957
```
6058

6159
#### Fiber
62-
Build tag: `http_adapter_fiber`
6360
```golang
6461
package main
6562

adapter/echo/echo.go

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
1-
//go:build http_adapter_echo
2-
// +build http_adapter_echo
3-
41
package echo
52

63
import (

adapter/fiber/fiber.go

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
1-
//go:build http_adapter_fiber
2-
// +build http_adapter_fiber
3-
41
package fiber
52

63
import (

adapter/vanilla/vanilla.go

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
1-
//go:build http_adapter_vanilla
2-
// +build http_adapter_vanilla
3-
41
package vanilla
52

63
import (

0 commit comments

Comments
 (0)