24 lines
485 B
Python
Executable File
24 lines
485 B
Python
Executable File
#!/usr/bin/env python3
|
|
|
|
# ClipCascade - A seamless clipboard syncing utility
|
|
# Repository: https://github.com/Sathvik-Rao/ClipCascade
|
|
#
|
|
# Author: Sathvik Rao Poladi
|
|
# License: GPL-3.0
|
|
#
|
|
# This script serves as the entry point for the ClipCascade application,
|
|
# initializing and running the core application logic.
|
|
|
|
from core.application import Application
|
|
|
|
|
|
class Main:
|
|
def __init__(self):
|
|
Application().run()
|
|
|
|
def main():
|
|
Main()
|
|
|
|
if __name__ == "__main__":
|
|
main()
|