Simplify aos::Init
Most of the variants were to deal with core, which has been gone for a
year. Simplify those all into InitGoogle.
InitGoogle should be renamed to Init at some point. It does everything
now.
Change-Id: I738ee03e9c5b2e6348ef33302835f915df68011f
diff --git a/y2016/dashboard/dashboard.cc b/y2016/dashboard/dashboard.cc
index ae4f7ed..b16c66e 100644
--- a/y2016/dashboard/dashboard.cc
+++ b/y2016/dashboard/dashboard.cc
@@ -279,11 +279,11 @@
} // namespace dashboard
} // namespace y2016
-int main(int, char *[]) {
+int main(int argc, char **argv) {
// Make sure to reference this to force the linker to include it.
findEmbeddedContent("");
- ::aos::InitNRT();
+ ::aos::InitGoogle(&argc, &argv);
aos::FlatbufferDetachedBuffer<aos::Configuration> config =
aos::configuration::ReadConfig("config.json");