Files
alire-index-community/src/alire-repositories-git.ads
T
Jano at Zelda bcb199257a First approach
2018-01-26 17:38:36 +01:00

16 lines
417 B
Ada

package Alire.Repositories.Git with Preelaborate is
type Repository (<>) is new Repositories.Repository with private;
subtype Commit_ID is String (1 .. 40);
function New_Git_Repo (URL : String) return Repository;
private
type Repository (URL_Length : Natural) is new Repositories.Repository with record
URL : String (1 .. URL_Length);
end record;
end Alire.Repositories.Git;