mirror of
https://github.com/deadc0de6/dotdrop.git
synced 2026-02-08 19:34:17 +00:00
first commit
This commit is contained in:
17
dotdrop/dotfile.py
Normal file
17
dotdrop/dotfile.py
Normal file
@@ -0,0 +1,17 @@
|
||||
"""
|
||||
author: deadc0de6 (https://github.com/deadc0de6)
|
||||
represents a dotfile in dotdrop
|
||||
"""
|
||||
|
||||
|
||||
class Dotfile:
|
||||
|
||||
def __init__(self, key, dst, src):
|
||||
self.key = key
|
||||
self.dst = dst
|
||||
self.src = src
|
||||
|
||||
def __str__(self):
|
||||
string = 'key:%s, src: %s, dst: %s' % (self.key,
|
||||
self.src, self.dst)
|
||||
return string
|
||||
Reference in New Issue
Block a user