cellar/src/bottles/activate.cpp

13 lines
242 B
C++
Raw Normal View History

2017-03-23 15:03:02 -07:00
#include <iostream>
#include <string>
#include <vector>
2017-03-23 15:03:02 -07:00
#include "bottles.hpp"
#include "internal/bottles.hpp"
using namespace std;
void cellar::bottles::switch_active_bottle(int argc, vector<string> argv) {
cout << argv[0] << endl;
2017-03-23 15:03:02 -07:00
}