mirror of
https://github.com/abapGit/abapGit.git
synced 2025-05-03 05:18:59 +08:00

Change of terminology (#4043). This time with the missing changes in service_repo. repo_srv and serializer will be next after #4431. Co-authored-by: Lars Hvam <larshp@hotmail.com>
16 lines
403 B
ABAP
16 lines
403 B
ABAP
INTERFACE zif_abapgit_services_repo
|
|
PUBLIC .
|
|
|
|
TYPES:
|
|
BEGIN OF ty_repo_params,
|
|
url TYPE string,
|
|
package TYPE devclass,
|
|
branch_name TYPE string,
|
|
display_name TYPE string,
|
|
folder_logic TYPE string,
|
|
ignore_subpackages TYPE abap_bool,
|
|
main_lang_only TYPE abap_bool,
|
|
END OF ty_repo_params .
|
|
|
|
ENDINTERFACE.
|