mirror of
https://github.com/ful1e5/Bibata_Cursor.git
synced 2025-05-14 15:14:51 -04:00
16 lines
309 B
Python
16 lines
309 B
Python
#!/usr/bin/env python
|
|
# -*- coding: utf-8 -*-
|
|
|
|
import builder
|
|
from .provider import ConfigsProvider
|
|
|
|
|
|
class CursorBuilder():
|
|
"""
|
|
docstring
|
|
"""
|
|
|
|
def __init__(self, configs: ConfigsProvider):
|
|
|
|
print("⚡ Bibata Builder Version %s" % builder.__version__)
|
|
self.__configs = configs
|