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