aspnetcore/test/WebSites/FSharpWebSite/Controllers/HomeController.fs

17 lines
426 B
Forth

// Copyright (c) .NET Foundation. All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
namespace FSharpWebSite.Controllers
open System
open System.Collections.Generic
open System.Linq
open System.Threading.Tasks
open Microsoft.AspNetCore.Mvc
type HomeController () =
inherit Controller()
member this.Index () =
this.View()