# README
PogHTTP
A simple implementation of the HTTP/3.0 protocol that is agnostic with respect to it's QUIC implementation.
Adapter
To allow the use of multiple implementations of QUIC, the Design Pattern Adapter was used. Also since most implementations of QUIC are in C or C++, the library cgo was used through out most of the project.
Examples
The directory ./example contains a sample that uses quic-go library for QUIC communication.
To use it follow the next steps:
cd ./example
go build main.go
./main
The program starts a HTTP server that returns the current time.
Other samples of QUIC using the Adapter are also provided: