patchman/client/main.go

24 lines
771 B
Go
Raw Normal View History

2023-10-26 14:59:47 +02:00
/*
Copyright © 2023 Johannes Bülow <johannes.buelow@jmbit.de>
2023-10-22 16:11:13 +02:00
2023-10-26 14:59:47 +02:00
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.
2023-10-22 16:11:13 +02:00
2023-10-26 14:59:47 +02:00
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
2023-10-22 16:11:13 +02:00
2023-10-26 14:59:47 +02:00
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package main
2023-10-22 16:11:13 +02:00
2023-10-26 14:59:47 +02:00
import "git.jmbit.de/jmb/patchman/client/cmd"
2023-10-22 16:11:13 +02:00
func main() {
2023-10-26 14:59:47 +02:00
cmd.Execute()
2023-10-22 16:11:13 +02:00
}