summaryrefslogtreecommitdiff
path: root/StubGen/StubGen/Program.cs
blob: b4bb6e0815f1bd13008d3ac2b53bd5a4f93d66c3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
using System;
using System.Collections.Generic;
using System.IO;
using System.Net.Http;
using HtmlAgilityPack;

namespace StubGen
{
    partial class Program
    {
        static void Main(string[] args)
        {
            ScrapeFramework(new UIKitData());

            Console.WriteLine("Done!");
            Console.ReadLine();
        }
    }
}
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback