Loading character
Loading...Loading...Loading...Loading...Loading...Loading...Loading...Loading...Loading...Loading...Loading...Loading...Loading...Loading...Loading...Loading...Loading...Loading...

Fluery - Welcome!

from typing import Any, Awaitable, Callable, TypeVar, Union

F = TypeVar("F", bound=Callable[..., Awaitable[Any]])


def dialog_stage(trigger: Union[str, Callable[[str], bool]]):
def wrapper(func: F) -> F:
setattr(func, "_dialog_is_stage", True)
setattr(func, "_dialog_stage_trigger", trigger)
return func

return wrapper
manager:
image: skyclad-observer:local
networks:
- shared
env_file:
- ../env/.env_manager
environment:
DOCKER_HOST: tcp://docker-proxy:2375
deploy:
mode: replicated
replicas: 1
placement:
constraints: [node.role == manager]
fmt.Println("Building an API server...")
app := fiber.New(fiber.Config{
ServerHeader: "keyholder",
AppName: "keyholder",
DisableKeepalive: true,
ErrorHandler: func(ctx *fiber.Ctx, err error) error {
return ctx.Status(500).JSON(types.BaseResponse{
IsOk: false,
Detail: err.Error(),
Code: "app_error",
})
},
})
Mascot

About me

I'm a web developer with a passion for learning and making useless, sometimes funny, and overambitious things just because I have nothing better to do ;)

Contact me

• Discord: @fluery
• Telegram: @mellownessiess
• Steam: Starrysparklez
• Email: [email protected]
• GitHub: Starrysparklez

Tech stack

• Languages: Python, JS/TS, Go, Java
• Software: Docker (+Swarm), Git
• Most used frameworks: aiogram, discord.py, FastAPI

My Projects!

The Naomi Project

The Naomi bot project is a Discord bot that was founded in 2018. Naomi includes many useful (and useless) things, like fun commands, a simple moderation system, message triggers, leveling system and much more. Currently, the project is "frozen" (but still active and available to use), but we plan to make it truly great!

The Naomi Project

Personal Page

My personal page is where you are at this moment! This website is made with Astro.

Personal Page