summaryrefslogtreecommitdiffstats
path: root/pwman
blob: 3c9383e2fc707d093fc225c84d65637a66f66329 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""
# Simple password manager
# Copyright (c) 2011-2019 Michael Buesch <m@bues.ch>
# Licensed under the GNU/GPL version 2 or later.
"""

from libpwman.__main__ import main
import sys

if __name__ == "__main__":
	sys.exit(main())
bues.ch cgit interface