github.com/mholt/caddy-l4@v0.0.0-20241104153248-ec8fae209322/imports.go (about) 1 // Copyright 2020 Matthew Holt 2 // 3 // Licensed under the Apache License, Version 2.0 (the "License"); 4 // you may not use this file except in compliance with the License. 5 // You may obtain a copy of the License at 6 // 7 // http://www.apache.org/licenses/LICENSE-2.0 8 // 9 // Unless required by applicable law or agreed to in writing, software 10 // distributed under the License is distributed on an "AS IS" BASIS, 11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 // See the License for the specific language governing permissions and 13 // limitations under the License. 14 15 package caddyl4 16 17 import ( 18 // plugging in the standard modules for the layer4 app 19 _ "github.com/mholt/caddy-l4/layer4" 20 _ "github.com/mholt/caddy-l4/modules/l4clock" 21 _ "github.com/mholt/caddy-l4/modules/l4dns" 22 _ "github.com/mholt/caddy-l4/modules/l4echo" 23 _ "github.com/mholt/caddy-l4/modules/l4http" 24 _ "github.com/mholt/caddy-l4/modules/l4openvpn" 25 _ "github.com/mholt/caddy-l4/modules/l4postgres" 26 _ "github.com/mholt/caddy-l4/modules/l4proxy" 27 _ "github.com/mholt/caddy-l4/modules/l4proxyprotocol" 28 _ "github.com/mholt/caddy-l4/modules/l4quic" 29 _ "github.com/mholt/caddy-l4/modules/l4rdp" 30 _ "github.com/mholt/caddy-l4/modules/l4regexp" 31 _ "github.com/mholt/caddy-l4/modules/l4socks" 32 _ "github.com/mholt/caddy-l4/modules/l4ssh" 33 _ "github.com/mholt/caddy-l4/modules/l4subroute" 34 _ "github.com/mholt/caddy-l4/modules/l4tee" 35 _ "github.com/mholt/caddy-l4/modules/l4throttle" 36 _ "github.com/mholt/caddy-l4/modules/l4tls" 37 _ "github.com/mholt/caddy-l4/modules/l4winbox" 38 _ "github.com/mholt/caddy-l4/modules/l4wireguard" 39 _ "github.com/mholt/caddy-l4/modules/l4xmpp" 40 )