/** | |
*Submitted for verification at Etherscan.io on 2020-01-31 | |
*/ | |
/** | |
* | |
* ,d8888b | |
* 88P' | |
*d888888P | |
* ?88' d8888b 88bd88b .d888b, d888b8b d888b8b d8888b |
package main | |
import ( | |
"fmt" | |
"io" | |
"log" | |
"os" | |
) | |
func main() { |
package main | |
import ( | |
"github.com/gin-gonic/gin" | |
"gorm.io/driver/sqlite" | |
"gorm.io/gorm" | |
"log" | |
"net/http" | |
) |
Securing endpoints to specific IP addresses to prevent unauthorized access is a common practice in Backend engineering particularly for sensitive endpoints.
An Example is Securing Webhook endpoints E.g. Paystack
The files Attached
- main.go :: Houses the server
- middleware.go :: Houses the IP whitelisting function
""" | |
Single Responsibility Principle | |
“…You had one job” — Loki to Skurge in Thor: Ragnarok | |
A class should have only one job. | |
If a class has more than one responsibility, it becomes coupled. | |
A change to one responsibility results to modification of the other responsibility. | |
""" | |
class Animal: | |
def __init__(self, name: str): |
This logging setup configures Structlog to output pretty logs in development, and JSON log lines in production.
Then, you can use Structlog loggers or standard logging
loggers, and they both will be processed by the Structlog pipeline (see the hello()
endpoint for reference). That way any log generated by your dependencies will also be processed and enriched, even if they know nothing about Structlog!
Requests are assigned a correlation ID with the asgi-correlation-id
middleware (either captured from incoming request or generated on the fly).
All logs are linked to the correlation ID, and to the Datadog trace/span if instrumented.
This data "global to the request" is stored in context vars, and automatically added to all logs produced during the request thanks to Structlog.
You can add to these "global local variables" at any point in an endpoint with `structlog.contextvars.bind_contextvars(custom
import threading | |
import time | |
# Function to be executed concurrently | |
def print_after_delay(text, delay): | |
time.sleep(delay) | |
print(text) |