blob: 54dc8dcc53ac3d6bc26db9a6bf934178e0489ff6 [file] [log] [blame]
Amin Hassanifd40bd92018-09-21 11:03:52 -07001// Copyright 2018 The Chromium OS Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#ifndef OOBE_CONFIG_UTILS_H_
6#define OOBE_CONFIG_UTILS_H_
7
8#include <string>
9#include <vector>
10
11namespace oobe_config {
12
13int RunCommand(const std::vector<std::string>& command);
14
15} // namespace oobe_config
16
17#endif // OOBE_CONFIG_UTILS_H_