aboutsummaryrefslogtreecommitdiffstats
path: root/pwman
blob: a9e7d7fe490a082632d383aa7fa118062c94bee3 (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-2024 Michael Büsch <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