Python backend for a Slack's kudos plugin.
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

feat: added kefinect module

+7
kefi/models/kefinect/__init__.py

This is a binary file and will not be displayed.

+7
kefi/models/kefinect/models.py
··· 1 + from typing import TYPE_CHECKING, Optional 2 + 3 + from sqlalchemy import Column, String 4 + from sqlmodel import Field, Relationship, SQLModel 5 + 6 + if TYPE_CHECKING: 7 + from kefi.models.kudos.models import Action