aboutsummaryrefslogtreecommitdiff
path: root/bpkg/rep-create
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2015-09-04 14:24:15 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2015-09-04 14:24:15 +0200
commit0e4d06919b7c075275b22edfc031f90b7f421e7a (patch)
tree2aa441c99823561ab8f0c6b2d28a2965b2099514 /bpkg/rep-create
parent81abf8eab067eab362f180a418215f9408de41dc (diff)
Implement rep-create (create repository) command
Diffstat (limited to 'bpkg/rep-create')
-rw-r--r--bpkg/rep-create17
1 files changed, 17 insertions, 0 deletions
diff --git a/bpkg/rep-create b/bpkg/rep-create
new file mode 100644
index 0000000..7ce693e
--- /dev/null
+++ b/bpkg/rep-create
@@ -0,0 +1,17 @@
+// file : bpkg/rep-create -*- C++ -*-
+// copyright : Copyright (c) 2014-2015 Code Synthesis Ltd
+// license : MIT; see accompanying LICENSE file
+
+#ifndef BPKG_REP_CREATE
+#define BPKG_REP_CREATE
+
+#include <bpkg/types>
+#include <bpkg/rep-create-options>
+
+namespace bpkg
+{
+ void
+ rep_create (const rep_create_options&, cli::scanner& args);
+}
+
+#endif // BPKG_REP_CREATE