blob: 281a29e16b599a95421e7a35112eda77900ff549 [file] [log] [blame]
Robert Ancell8ee019d2023-07-11 15:45:46 +12001// Copyright 2014 The Flutter 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#include "my_application.h"
6
7int main(int argc, char** argv) {
8 g_autoptr(MyApplication) app = my_application_new();
9 return g_application_run(G_APPLICATION(app), argc, argv);
10}