Personal fork of the mighty, self-hostable Git server for the command line 🍦
1package store 2 3// Store is an interface for managing repositories, users, and settings. 4type Store interface { 5 RepositoryStore 6 UserStore 7 CollaboratorStore 8 SettingStore 9 LFSStore 10}